Login using Social Account
     Continue with GoogleLogin using your credentials
As we can see, the bikesData data set contains some features which may not be needed for this problem e.g.
Since, these features are not needed for our current problem, let us drop them from the bikesData data set.
Please define a python list called columnsToDrop
to store the above-mentioned feature(column) names which needs to be dropped from bikesData
data set.
Please drop these unwanted features (columns) defined by columnsToDrop
variable above from the bikesData
dataframe and store the resulting dataframe in bikesData
dataframe variable.
Hint: you can use the drop function with axis=1
as the second argument.
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
Answer is not availble for this assesment
Note - Having trouble with the assessment engine? Follow the steps listed here
Loading comments...