This repository contains the code for our project "Kickstarter Success Factors", developed during our Data Analyst training at DataScientest.
The goal of this project is to identify
- common characteristics of crowdfunding campaigns, and \n
- which of those have a positive, and \n
- which others a negative relation with a campaign's success.
This project was developed by the following team:
The raw data is available directly here (or on the data science platform kaggle without any cost).
To preprocess (preprocessing I) and analyze (preprocessing II & modeling) the data, you can run the notebooks - be careful with the filepaths.
You will need to install (some of) the dependencies (in a dedicated environment):
pip install -r requirements.txt
In a more interactive manner you may play around with the streamlit app.
To run the app, please execute the following code:
conda create --name crowdfunding-streamlit python=3.10
conda activate crowdfunding-streamlit
pip install -r requirements.txt
streamlit run streamlit_crowdfunding_BDA_May23.py
The app should then be available at localhost:8501.