Q:

using df.astype to select categorical data and numerical data

df = pd.DataFrame({'vertebrates': ['Bird', 'Bird', 'Mammal', 'Fish', 'Amphibian', 'Reptile', 'Mammal']})

df.vertebrates.astype("category").cat.codes
1
df.satisfaction.astype("category",
  ordered=True,
  categories=ordered_satisfaction
)
0

New to Communities?

Join the community