This workbook provides the template for the final project.
<name1>-<name2>-<project_short_name>.ipynb
Describe the goal of this project.
Example: The goal of this project is to determine if the bid quotas and premiums can be > used to predict the vehicle category.
Important:
Briefly describe the source(s) of data you are using.
Example:
We will use the dataset from: https://data.gov.sg/dataset/coe-bidding-results
Name | Type | Unit of Measure | Description |
---|---|---|---|
month | Datetime, YYYY-MM | none | date range: Jan 1, 2010 to Mar 31, 2018 |
bidding_no | Numeric | No. of Bids | Number of Bids |
vehicle_class | Text | none | Vehicle category: A to E |
quota | Numeric | No. of Bids | Number of Quota |
bids_success | Numeric | No. of Bids | Number of Successful Bids |
bids_received | Numeric | No. of Bids | Number of Bids Received |
premium | Numeric | S$ | COE premium |
List the tasks you will perform.
Example:
Write your code below to prepare the dataset using pandas
Write your code below to create X_train, X_test, y_train, y_test
Write your code below to initialize and train the algorithm(s)
Write your code below to evaluate metrics for the trained algorithm(s).
Feel free to plot the algorithm to visualize it, as appropriately.
Answer the following questions:
How did you measure the algorithm? Specify the metrics you used.
What is the outcome of the measurement? Explain the interpretation of the metrics.
What improvements do you propose?
What is the most challenging part of this project?