I'm learning pandas, and I need to read .csv data. Is there any code visualizer that supports pandas? Thanks.
code visualizer that supports pandas
code visualizer that supports pandas
|
Mar-23-2022, 04:53 PM
What is “code visualizer” and why you need one for “read .csv data”?
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.
Mar-23-2022, 05:03 PM
(This post was last modified: Mar-23-2022, 05:08 PM by rootsmusic.)
(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.
Mar-27-2022, 12:06 PM
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.
Mar-27-2022, 04:21 PM
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.
Mar-27-2022, 07:38 PM
(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
Mar-30-2022, 05:37 PM
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)
|
|
Users browsing this thread: 1 Guest(s)