Python Forum
code visualizer that supports pandas
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
code visualizer that supports pandas
#1
Question 
I'm learning pandas, and I need to read .csv data. Is there any code visualizer that supports pandas? Thanks.
Reply
#2
What is “code visualizer” and why you need one for “read .csv data”?
Gribouillis likes this post
I'm not 'in'-sane. Indeed, I am so far 'out' of sane that you appear a tiny blip on the distant coast of sanity. Bucky Katt, Get Fuzzy

Da Bishop: There's a dead bishop on the landing. I don't know who keeps bringing them in here. ....but society is to blame.
Reply
#3
(Mar-23-2022, 04:53 PM)perfringo Wrote: What is “code visualizer” and why you need one for “read .csv data”?

@perfringo, a "code visualizer" is a learning tool that displays the outputs of every step as it executes line by line. For pandas, I'm reading at least one .csv file as data source. Then I can learn functions to manipulate the read file.
Reply
#4
Are you using a notebook? If not, that is what I would suggest. Probably the most popular is Jupyter, but another option that has some neat data visualization is Google Colab, which is entirely online.
Reply
#5
Yes @jefsummers, I can use Jupyter notebook to execute Python code. But unless explicitly coded (e.g. print), I don't believe that Jupyter can visualize outputs from memory like coding with Python Tutor.
Reply
#6
(Mar-27-2022, 04:21 PM)rootsmusic Wrote: I don't believe that Jupyter can visualize outputs from memory like coding with Python Tutor.
There is Pandas Tutor that can visuals Pandas code
rootsmusic likes this post
Reply
#7
In Jupyter you can just type the name of the variable of interest at the end of a cell to get that displayed. Colab has an interactive table view that may be helpful. Only downside on Pandas Tutor is that the code is executed remotely and does not support all other libraries (similar to colab but a bit more restrictive - see episode 358 of the podcast Talk Python To Me)
rootsmusic likes this post
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020