how to solve pandas error
hey
when i type
product_categories = pd.series (products)
it gives me an error
2 answers ( 0 marked as helpful)
make sure to import pandas and type in the proper letter casings:
import pandas as pd
products = ['A','B','C','D']
product_categories = pd.Series(products)
Hi Antonious and Derrick!
Thanks for reaching out.
@: Derrick
Thanks for sharing this piece of information with the Community!
@: Antonious
It should be Series
with a capital letter, not series
with a small letter.
Hope this helps.
Best,
Tsvetelin