question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Data Viewer doesn't visualise child Dataframes

See original GitHub issue

Environment 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

Screenshot 2021-10-12 at 11 57 29 PM

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:closed
  • Created 2 years ago
  • Reactions:1
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
karthiknadigcommented, Oct 13, 2021

This is handled by the data viewer in the jupyter extension. Moving there.

0reactions
DonJayamannecommented, Dec 8, 2022
Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found