-
Notifications
You must be signed in to change notification settings - Fork 18
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
TibbleGrouped
object is not expandable in VSCode jupyter data viewer
#79
Comments
Thanks for reporting. Working on v0.6 to address all performance issues, and also the issue with the |
sure, thanks for all your work on this project! |
Hi @pwwang, Maybe I did not specify the functionality that I was expecting. I was expecting to get a dataframe output after grouping data with This is related with Data Viewer of dataframes and not related with the grouping functionality itself. Not sure if VSCode would add TibbleGroupd to Data Viewer to be able to see the data. Feel free to close this if you'd like. Note: Variables window for pandas_group shows it is a Dataframe size 22,2 but datar_group shows is a TibbleGrouped size 22 (picture below) |
|
I see. Will give it a further investigation. |
group_by()
creates unwanted DataFrameGroupByTibbleGrouped
object is not expandable in VSCode jupyter data viewer
An issue is submitted: |
They deemed the issue solved, is it right? |
I don't think so. It's locked by the bot due to inactivity. |
@pwwang , I just tested and it indeed persists, therefore I opened a new issue microsoft/vscode-jupyter#15750 |
When I create grouped data with
datar
'sgroup_by()
, I get an undesirableDataFrameGroupBy
element instead of a DataFrame. It is not desirable to have a DataFrameGroupBy in VSCode because the dataframe cannot be clicked on the Variables Window of VSCode to see the entire dataframe, whereas themtcars
can be click to exposed the full dataset because it is a DataFrame.The code below creates grouped data in
datar
and grouped data in pandas; However,datar
creates a DataFrameGroupBy instead of a dataframe.The text was updated successfully, but these errors were encountered: