Data Viewer doesn't visualise child Dataframes
See original GitHub issueEnvironment data
- debugpy version: 1.5.0
- OS and version: MAC - Big Sur
- Python version (& distribution if applicable, e.g. Anaconda): 3.6.8
- Using VS Code or Visual Studio: Visual Studio
Actual behavior
Child Dataframe are visible as Objects
and not accessible
Steps to reproduce:
import requests
import pandas as pd
url ='http://openinsider.com/screener?s=&o=&pl=&ph=&ll=&lh=&fd=3&fdr=&td=0&tdr=&fdlyl=&fdlyh=&daysago=&xp=1&excludeDerivRelated=1&vl=100&vh=&ocl=&och=&sic1=-1&sicl=100&sich=9999&grp=0&nfl=&nfh=&nil=&nih=&nol=&noh=&v2l=&v2h=&oc2l=&oc2h=&sortcol=0&cnt=1000&page=1'
html = requests.get(url).content
df_list = pd.read_html(html)
Issue Analytics
- State:
- Created 2 years ago
- Reactions:1
- Comments:5 (3 by maintainers)
Top Results From Across the Web
VS Code Data Viewer doesn't show DataFrame's index
I am starting to use VS Code for my notebooks and using the Data Viewer to explore my dataframes is one of ...
Read more >Displaying Pandas Dataframe - Databricks Community
Hi @sdaza (Customer),. The display command can be used to visualize Spark data frames or image objects but not a pandas data frame....
Read more >Data scientists, do you use the Data Viewer? : r/vscode - Reddit
In Python/Jupyter, it seems like the "usual" way to visualize data is to print out an output, even in "sandbox mode". So in...
Read more >How to Use MultiIndex in Pandas to Level Up Your Analysis
Let's dive into how multi-level indexes can be used for data analysis. A quick introduction to MultiIndex. A hierarchical index means that your ......
Read more >Plot With Pandas: Python Data Visualization for Beginners
First, you should configure the display.max.columns option to make sure pandas doesn't hide any columns. Then you can view the first few rows...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is handled by the data viewer in the jupyter extension. Moving there.
Duplicate of https://github.com/microsoft/vscode-jupyter/issues/1138