Replies: 1 comment
-
Thanks for the suggestion, I'll transfer it to an issue. cc @jmew |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When you run Jupyter/IPython in VSCode, you can view the Pandas dataframes variable in the data viewer:
Feature requests for data viewer:
1. add info as
info()
in the data viewerdtype
for each columnas
df.info()
:2. add a button to view
describe()
for columnsdescribe()
for selected columns (or all columns if there is no selection)as
df.describe()
:3. provide a textfield to input the expression to apply onto the dataframe
You can add fluent dot syntax onto the dataframe and view the result on the fly. It's useful for data tidying and cleaning.
The textfield looks like:
For example, you can type
.max()
in the textfield, it will update the data viewer for the output:You can chain the methods the with fluent dot syntax:
Those would be very useful to view the Pandas dataframes in VSCode.
Beta Was this translation helpful? Give feedback.
All reactions