Kickstarter is a global crowdfunding platform, focused on creativity and merchandising. The company's stated mission is to "help bring creative projects to life".
This project is making simple exploration and a look around to the crowdfunding data in Kickstarter.
Then our goal will be to evaluate and explore multiple supervised machine learning models, to predict if a project funding will be successful or failed before it is launched.
I took the data from Kaggle website, it includes 378,661 Kickstarter projects.
each project has 15 features:
- ID : project ID.
- name : the name of the project.
- main_category : the main category the project.
- category : a subgroup of main_category.
- currency : the currency of the project.
- deadline : the deadline of the project.
- goal : goal amount in project currency.
- launched : the launch date for the project.
- pledged : pledged amount in the project currency.
- state : state is a categorical status of the project.
- usd pledged : pledged amount in USD (conversion made by KS).
- usd_pledged_real : pledged amount in USD (conversion made by fixer.io).
- usd_goal_real : amount of USD the project asked for initially.
- backers : the number of supporters that actually invested in the project.
- country : country of origin of the project.
in this project, we can find out :
- what is the most common category of kickstarter projects.
- what is the average amount of pledged(USD), goal and backers.
- what is the accuracy score of the prediction model.
- what is the most important factor in having successful project.
i will use the must-have python packages for Data Science and Finance:
- NumPy : Allowing us to work with multidimensional arrays, and a fast numeric array computations
- Pandas : Allowing us to organize data in a tabular form, and quickly loading remote data or a .csv file.
- Sklearn : Machine Learning in Python, Simple and efficient tools for data mining and data analysis.
- Matplotlib : is a Python 2D plotting library.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
- Docker
-
Copy the project to your machine
git clone https://github.com/ayoubabozer/kickstarter.git
-
Get into the Dir
cd kickstarter
-
Pull & Run Docker Image
docker run -d --rm --name jupyter -p 8888:8888 -v $PWD:/opt playniuniu/jupyter-pandas
-
Open the app in : http://localhost:8888