Best way to view dataframes inside of a dictionary in VSCODE /u/GarbageTimePro Python Education

I use Data Wrangler and “Jupyter Variables” to view data and variables. They work fine except when I want to view dataframes that are inside of a dictionary. Sypder can easily do this but I want to do it in VSCode. Anyone know of any extensions?

Here’s a simple code block that I want to view the formatted data for. Specifically the ohlcv_data dict.

for ticker in tickers: temp = yf.download(ticker, period='1mo', interval='15m') temp.dropna(inplace=True, how='any') ohlcv_data[ticker] = temp 

submitted by /u/GarbageTimePro
[link] [comments]

​r/learnpython I use Data Wrangler and “Jupyter Variables” to view data and variables. They work fine except when I want to view dataframes that are inside of a dictionary. Sypder can easily do this but I want to do it in VSCode. Anyone know of any extensions? Here’s a simple code block that I want to view the formatted data for. Specifically the ohlcv_data dict. for ticker in tickers: temp = yf.download(ticker, period=’1mo’, interval=’15m’) temp.dropna(inplace=True, how=’any’) ohlcv_data[ticker] = temp submitted by /u/GarbageTimePro [link] [comments] 

I use Data Wrangler and “Jupyter Variables” to view data and variables. They work fine except when I want to view dataframes that are inside of a dictionary. Sypder can easily do this but I want to do it in VSCode. Anyone know of any extensions?

Here’s a simple code block that I want to view the formatted data for. Specifically the ohlcv_data dict.

for ticker in tickers: temp = yf.download(ticker, period='1mo', interval='15m') temp.dropna(inplace=True, how='any') ohlcv_data[ticker] = temp 

submitted by /u/GarbageTimePro
[link] [comments] 

Leave a Reply

Your email address will not be published. Required fields are marked *