/datascience-done-right

Data science tips and tricks

Primary LanguageJupyter NotebookMIT LicenseMIT

Data Science done right

Data science tips and tricks to enhance data analysis and predictive modeling.

Most of the tips shown here aren't directly useful to the day-to-day job, but they'll demistify many concepts around machine learning and data science. This knowledge will hopefully build up to the point it'll help you achieve greater results as the blackbox around many pip install magic-buttons used daily are opened.

Table of Contents

About me

Links

Tutorials:

Classification

Regression

Using this repo

Clone the repository:

git clone git@github.com:BreytMN/datascience-done-right.git

I suggest using VS Code as text editor and IDE for navigating this repository. Open the folder inside VS Code after changing directory with:

cd datascience-done-right
code .

This repository is written using WSL with an Ubuntu distro running Python 3.12. If you do not have Python 3.12 installed, you can run this on terminal (Ubuntu):

make python

This will install Python 3.12 and all dependencies need to run it, in the end it will prompt the user to set the default version for Python.

After that you can run:

make venv
source .venv/bin/activate

The first command will create a virtual environment and install all libraries needed to run any code inside this repository. The second command will activate the environment.

License

MIT License