9 lines
231 B
Python
9 lines
231 B
Python
import os
|
|
import pandas as pd
|
|
|
|
filePath_df_binary_5050 = os.path.join('..', 'data1', 'diabetes_binary_5050split_health_indicators_BRFSS2021.csv')
|
|
|
|
df_binary_5050 = pd.read_csv(filePath_df_binary_5050)
|
|
|
|
print(df_binary_5050.head())
|