Skip to content
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

As a user, I want to select data with the order of a dataframe when I set '# of Rows to Display', so that I can display selected rows. #766

Open
kyokonishito opened this issue Apr 20, 2019 · 0 comments

Comments

@kyokonishito
Copy link

As a user, I want to select data with the order of a dataframe when I set '# of Rows to Display', so that I can display selected rows.

Expected behavior

I can see the data from top row to # of dataframe when I set '# of Rows to Display'.

Actual behavior

I'm not sure which rows are selected.

Steps to reproduce the behavior

after display all data, set option '# of Rows to Display' to 10. I'm not sure which data is selected as 10 rows.

import pandas as pd
import numpy as np
import pixiedust

alphabet = []
for letter in range(65, 91):
    alphabet.append(chr(letter))

df = pd.DataFrame()
df['Key'] = pd.Series( alphabet)
df['Value'] =  pd.Series(np.random.randint(1, 100, len(df) ) )

display(df)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant