-
Notifications
You must be signed in to change notification settings - Fork 305
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enhance the data viewer for Pandas dataframes in VSCode #9986
Comments
This feature might be covered by Data Wrangler. Every feature that was requested here can be done in Data Wrangler today already. |
I thought it might :) Do you have any public information you can share about an ETA? |
@rchiodo We are hoping to get an VS Code Insiders release in June but cannot share the repo at this time as it will be private until the insiders release. I think we can use this issue or the original discussion issue if users have any other comments or feedback for what else they'd like to see in this "enhanced data viewer". |
@jmew is there any way I can track the progress on the data wrangler? |
I'm trying to solve the same issue and I can't find "Data Wrangler" via Google (just seems to give me the AWS version of "data wrangler" or general blogs on Python "data wrangling"). Can you provide a link to this, please? |
I know multiple teams (myself included) that refuse to start using VS Code until there is a better way to view and filter dataframes in Pandas. For now, they stick to PyCharm and RStudio. |
Duplicate of #1148 |
Discussed in #9867
Originally posted by xareelee April 28, 2022
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.
The text was updated successfully, but these errors were encountered: