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?
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?