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
items = [str(i) for i in range(40000)]
s = pd.Series(items, dtype='category')
df = pd.DataFrame({'C':s, 'data':np.random.randn(40000)})
data = df[df.C=='20']
str(data.C)
This renders the string of all of the categories before chopping them, see here
This should check for a large number of categories first, then render the chopped portions.
The text was updated successfully, but these errors were encountered:
xref #11304
This renders the string of all of the categories before chopping them, see here
This should check for a large number of categories first, then render the chopped portions.
The text was updated successfully, but these errors were encountered: