Hello, I would like to find out if the isAccident and isPedestrian columns are available on the train.csv file or I have to first find a way to build them into the file?
isPedestrian: train.Subcause.isin(['With A Pedestrian'])
I think they're there mostly for convenience - for example if you wanted to see what percentage of incidents were accidents for a given segment. Hope that helps!
They are available in the file, and are based on the 'Cause' and 'Subcause' columns.
isAccident: train.Cause.isin(['Accident', 'Crash'])
isPedestrian: train.Subcause.isin(['With A Pedestrian'])
I think they're there mostly for convenience - for example if you wanted to see what percentage of incidents were accidents for a given segment. Hope that helps!
Hello,
@Johnowhitaker using the Cause and Subcause columns helped in appending the 2 coloumns to the dataframe. Thank you