Issue in the Describe Query

Viewed 11
import pandas as pd

# read csv into a DataFrame
df = pd.read_csv("sample.data")

#filter the dataframe and to obtain the descriptive measures of selected variables
print(df["column01"].describe())

Do you recognise any issue in this query?

0 Answers
Related