You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What pain point is this feature intended to address? Please describe.
When writing scala code cells, it's occasionally useful, when debugging, to display a sample of a generated dataset (i.e., what one would do with df.show() at the terminal).
Describe the solution you'd like
A vizierdb.show(df:DataFrame) that displays the first N rows of the dataframe as a normal dataset.
Bonus points if we can override .show() to have this behavior.
Extra bonus points if we can figure out the name of the dataframe variable and use that as the dataset name.
Describe alternatives you've considered
The current workaround is:
What pain point is this feature intended to address? Please describe.
When writing scala code cells, it's occasionally useful, when debugging, to display a sample of a generated dataset (i.e., what one would do with df.show() at the terminal).
Describe the solution you'd like
A
vizierdb.show(df:DataFrame)
that displays the first N rows of the dataframe as a normal dataset.Bonus points if we can override
.show()
to have this behavior.Extra bonus points if we can figure out the name of the dataframe variable and use that as the dataset name.
Describe alternatives you've considered
The current workaround is:
This has two main drawbacks:
The text was updated successfully, but these errors were encountered: