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

How do i overcome this issue? #2406

Open
shivanesh31 opened this issue Dec 20, 2023 · 1 comment
Open

How do i overcome this issue? #2406

shivanesh31 opened this issue Dec 20, 2023 · 1 comment

Comments

@shivanesh31
Copy link

df_vaex['CARRIER_NAME'] = df_vaex.astype('category')
df.plot1d(df['CARRIER_NAME'], shape=128, limits='99.7%')
plt.title('Number of Flights by Carrier')
plt.xlabel('Carrier Name')
plt.ylabel('Number of Flights')
plt.xticks(rotation=45, ha='right')
plt.show()

AttributeError: 'DataFrameLocal' object has no attribute 'astype'

@ashsharma96
Copy link

@shivanesh31 Maybe the below change can help you on this!

df_vaex['CARRIER_NAME'] = df_vaex['CARRIER_NAME'].astype('category')

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

2 participants