Using Stackoverflow's anual developer survey data, we'll build a machine learning model to predict employeee salaries based on certain features in the dataset.
Note
The csv file
cannot be uploaded to github because it is > the required 25MB.
Download it from stackflow:
import requests, zipfile, io, os
url = "https://info.stackoverflowsolutions.com/rs/719-EMH-566/images/stack-overflow-developer-survey-2021.zip"
file = requests.get(url)
zipf = zipfile.ZipFile(io.BytesIO(file.content))
expracted_data = zipf.extractall(os.mkdir('./survey-data'))