Generation

generate functionMon, 13 Feb 2023

There is Pandas dataframe: surgery age rectal_temp pulse respiratory_rate extremities_temp pain outcome 0 38.50 66 3 3 ? 2 ? 0 1 39.2 88 ? ? 4 1 ? 0 2 38.30 40 1 1 3 1 ? 0 3 39.10 164 4 1 6 2 1 0 4 37.30 104 ? ? 6 2 ? 0 Write a function that finds all lines with the value "?" and creates a new df2 dataframe with them

df=pd.read_clipboard() df2 = df[df=='?'] print("the original dataframe:") print(df) print("the new dataframe:") print(df2)

Questions about programming?Chat with your personal AI assistant