├── .gitignore
├── CNAME
├── assets
└── head.jpg
├── .github
├── FUNDING.yml
└── workflows
│ └── action.yml
├── OWNERS
├── .travis.yml
├── mlc_config.json
├── LICENSE
├── CODE_OF_CONDUCT.md
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
--------------------------------------------------------------------------------
/CNAME:
--------------------------------------------------------------------------------
1 | awesome-datascience.academic.io
--------------------------------------------------------------------------------
/assets/head.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/FarhaKousar1601/awesome-datascience/HEAD/assets/head.jpg
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 | github: [hmert]
3 | patreon: hmert
4 |
--------------------------------------------------------------------------------
/OWNERS:
--------------------------------------------------------------------------------
1 | ---
2 | reviewers:
3 | - hmert
4 | - fakturk
5 |
6 | approvers:
7 | - hmert
8 | - fakturk
9 |
--------------------------------------------------------------------------------
/.travis.yml:
--------------------------------------------------------------------------------
1 | language: ruby
2 | rvm:
3 | - 2.2
4 | before_script:
5 | - gem install awesome_bot
6 | script:
7 | - awesome_bot README.md
8 |
--------------------------------------------------------------------------------
/mlc_config.json:
--------------------------------------------------------------------------------
1 | {
2 |
3 | "ignorePatterns": [
4 | {
5 | "pattern": "^https://www.datacamp.com*"
6 | }
7 | ],
8 | "timeout": "20s",
9 | "retryOn429": true,
10 | "retryCount": 5,
11 | "fallbackRetryDelay": "30s",
12 | "aliveStatusCodes": [200, 206]
13 | }
14 |
--------------------------------------------------------------------------------
/.github/workflows/action.yml:
--------------------------------------------------------------------------------
1 | name: Check Markdown links
2 | on:
3 | schedule:
4 | - cron: "* */24 * * *"
5 | push:
6 | branches: [ live ]
7 |
8 | jobs:
9 | markdown-link-check:
10 | runs-on: ubuntu-latest
11 | steps:
12 | - uses: actions/checkout@master
13 | with:
14 | fetch-depth: 1
15 | - uses: gaurav-nelson/github-action-markdown-link-check@master
16 | with:
17 | use-quiet-mode: "yes"
18 | use-verbose-mode: "yes"
19 | config-file: './mlc_config.json'
20 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2014-2020 Academic.IO
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | In the interest of fostering an open and welcoming environment, we as
6 | contributors and maintainers pledge to making participation in our project and
7 | our community a harassment-free experience for everyone, regardless of age, body
8 | size, disability, ethnicity, sex characteristics, gender identity and expression,
9 | level of experience, education, socio-economic status, nationality, personal
10 | appearance, race, religion, or sexual identity and orientation.
11 |
12 | ## Our Standards
13 |
14 | Examples of behavior that contributes to creating a positive environment
15 | include:
16 |
17 | * Using welcoming and inclusive language
18 | * Being respectful of differing viewpoints and experiences
19 | * Gracefully accepting constructive criticism
20 | * Focusing on what is best for the community
21 | * Showing empathy towards other community members
22 |
23 | Examples of unacceptable behavior by participants include:
24 |
25 | * The use of sexualized language or imagery and unwelcome sexual attention or
26 | advances
27 | * Trolling, insulting/derogatory comments, and personal or political attacks
28 | * Public or private harassment
29 | * Publishing others' private information, such as a physical or electronic
30 | address, without explicit permission
31 | * Other conduct which could reasonably be considered inappropriate in a
32 | professional setting
33 |
34 | ## Our Responsibilities
35 |
36 | Project maintainers are responsible for clarifying the standards of acceptable
37 | behavior and are expected to take appropriate and fair corrective action in
38 | response to any instances of unacceptable behavior.
39 |
40 | Project maintainers have the right and responsibility to remove, edit, or
41 | reject comments, commits, code, wiki edits, issues, and other contributions
42 | that are not aligned to this Code of Conduct, or to ban temporarily or
43 | permanently any contributor for other behaviors that they deem inappropriate,
44 | threatening, offensive, or harmful.
45 |
46 | ## Scope
47 |
48 | This Code of Conduct applies both within project spaces and in public spaces
49 | when an individual is representing the project or its community. Examples of
50 | representing a project or community include using an official project e-mail
51 | address, posting via an official social media account, or acting as an appointed
52 | representative at an online or offline event. Representation of a project may be
53 | further defined and clarified by project maintainers.
54 |
55 | ## Enforcement
56 |
57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
58 | reported by contacting the project team at hi@academic.io. All
59 | complaints will be reviewed and investigated and will result in a response that
60 | is deemed necessary and appropriate to the circumstances. The project team is
61 | obligated to maintain confidentiality with regard to the reporter of an incident.
62 | Further details of specific enforcement policies may be posted separately.
63 |
64 | Project maintainers who do not follow or enforce the Code of Conduct in good
65 | faith may face temporary or permanent repercussions as determined by other
66 | members of the project's leadership.
67 |
68 | ## Attribution
69 |
70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72 |
73 | [homepage]: https://www.contributor-covenant.org
74 |
75 | For answers to common questions about this code of conduct, see
76 | https://www.contributor-covenant.org/faq
77 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |

2 |
3 | # AWESOME DATA SCIENCE
4 |
5 | [](https://github.com/sindresorhus/awesome)
6 |
7 | **An open source Data Science repository to learn and apply towards solving real world problems.**
8 |
9 | This is a shortcut path to start studying **Data Science**. Just follow the steps to answer the questions, "What is Data Science and what should I study to learn Data Science?"
10 |
11 | ## Sponsors
12 |
13 | | Sponsor | Pitch |
14 | | --- | --- |
15 | | --- | Be the first to sponsor! `github@academic.io` |
16 |
17 |
18 |
19 |
20 |
21 | ## Table of Contents
22 |
23 | - [What is Data Science?](#what-is-data-science)
24 | - [Where do I Start?](#where-do-i-start)
25 | - [Training Resources](#training-resources)
26 | - [Tutorials](#tutorials)
27 | - [Free Courses](#free-courses)
28 | - [Massively Open Online Courses](#moocs)
29 | - [Intensive Programs](#intensive-programs)
30 | - [Colleges](#colleges)
31 | - [The Data Science Toolbox](#the-data-science-toolbox)
32 | - [Algorithms](#algorithms)
33 | - [Supervised Learning](#supervised-learning)
34 | - [Unsupervised Learning](#unsupervised-learning)
35 | - [Semi-Supervised Learning](#semi-supervised-learning)
36 | - [Reinforcement Learning](#reinforcement-learning)
37 | - [Data Mining Algorithms](#data-mining-algorithms)
38 | - [Deep Learning Architectures](#deep-learning-architectures)
39 | - [General Machine Learning Packages](#general-machine-learning-packages)
40 | - [Deep Learning Packages](#deep-learning-packages)
41 | - [PyTorch Ecosystem](#pytorch-ecosystem)
42 | - [TensorFlow Ecosystem](#tensorflow-ecosystem)
43 | - [Keras Ecosystem](#keras-ecosystem)
44 | - [Visualization Tools](#visualization-tools)
45 | - [Miscellaneous Tools](#miscellaneous-tools)
46 | - [Literature and Media](#literature-and-media)
47 | - [Books](#books)
48 | - [Book Deals (Affiliated)](#book-deals-affiliated-)
49 | - [Journals, Publications, and Magazines](#journals-publications-and-magazines)
50 | - [Newsletters](#newsletters)
51 | - [Bloggers](#bloggers)
52 | - [Presentations](#presentations)
53 | - [Podcasts](#podcasts)
54 | - [YouTube Videos & Channels](#youtube-videos--channels)
55 | - [Socialize](#socialize)
56 | - [Facebook Accounts](#facebook-accounts)
57 | - [Twitter Accounts](#twitter-accounts)
58 | - [Telegram Channels](#telegram-channels)
59 | - [Slack Communities](#slack-communities)
60 | - [GitHub Groups](#github-groups)
61 | - [Data Science Competitions](#data-science-competitions)
62 | - [Fun](#fun)
63 | - [Infographics](#infographics)
64 | - [Datasets](#datasets)
65 | - [Comics](#comics)
66 | - [Other Awesome Lists](#other-awesome-lists)
67 | - [Hobby](#hobby)
68 |
69 | ## What is Data Science?
70 | **[`^ back to top ^`](#awesome-data-science)**
71 |
72 | Data Science is one of the hottest topics on the Computer and Internet farmland nowadays. People have gathered data from applications and systems until today and now is the time to analyze them. The next steps are producing suggestions from the data and creating predictions about the future. [Here](https://www.quora.com/Data-Science/What-is-data-science) you can find the biggest question for **Data Science** and hundreds of answers from experts.
73 |
74 |
75 | | Link | Preview |
76 | | --- | --- |
77 | | [What is Data Science @ O'reilly](https://www.oreilly.com/ideas/what-is-data-science) | _Data scientists combine entrepreneurship with patience, the willingness to build data products incrementally, the ability to explore, and the ability to iterate over a solution. They are inherently interdisciplinary. They can tackle all aspects of a problem, from initial data collection and data conditioning to drawing conclusions. They can think outside the box to come up with new ways to view the problem, or to work with very broadly defined problems: “here’s a lot of data, what can you make from it?”_ |
78 | | [What is Data Science @ Quora](https://www.quora.com/Data-Science/What-is-data-science) | Data Science is a combination of a number of aspects of Data such as Technology, Algorithm development, and data interference to study the data, analyse it, and find innovative solutions to difficult problems. Basically Data Science is all about Analysing data and driving for business growth by finding creative ways. |
79 | | [The sexiest job of 21st century](https://hbr.org/2012/10/data-scientist-the-sexiest-job-of-the-21st-century) | _Data scientists today are akin to Wall Street “quants” of the 1980s and 1990s. In those days people with backgrounds in physics and math streamed to investment banks and hedge funds, where they could devise entirely new algorithms and data strategies. Then a variety of universities developed master’s programs in financial engineering, which churned out a second generation of talent that was more accessible to mainstream firms. The pattern was repeated later in the 1990s with search engineers, whose rarefied skills soon came to be taught in computer science programs._ |
80 | | [Wikipedia](https://en.wikipedia.org/wiki/Data_science) | _Data science is an inter-disciplinary field that uses scientific methods, processes, algorithms and systems to extract knowledge and insights from many structural and unstructured data. Data science is related to data mining, machine learning and big data._ |
81 | | [How to Become a Data Scientist](https://www.mastersindatascience.org/careers/data-scientist/) | _Data scientists are big data wranglers, gathering and analyzing large sets of structured and unstructured data. A data scientist’s role combines computer science, statistics, and mathematics. They analyze, process, and model data then interpret the results to create actionable plans for companies and other organizations._ |
82 | | [a very short history of #datascience](https://www.forbes.com/sites/gilpress/2013/05/28/a-very-short-history-of-data-science/) | _The story of how data scientists became sexy is mostly the story of the coupling of the mature discipline of statistics with a very young one--computer science. The term “Data Science” has emerged only recently to specifically designate a new profession that is expected to make sense of the vast stores of big data. But making sense of data has a long history and has been discussed by scientists, statisticians, librarians, computer scientists and others for years. The following timeline traces the evolution of the term “Data Science” and its use, attempts to define it, and related terms._ |
83 | |[Software Development Resources for Data Scientists](https://www.rstudio.com/blog/software-development-resources-for-data-scientists/)|Data scientists concentrate on making sense of data through exploratory analysis, statistics, and models. Software developers apply a separate set of knowledge with different tools. Although their focus may seem unrelated, data science teams can benefit from adopting software development best practices. Version control, automated testing, and other dev skills help create reproducible, production-ready code and tools.|
84 |
85 | ## Where do I Start?
86 | **[`^ back to top ^`](#awesome-data-science)**
87 |
88 | While not strictly necessary, having a programming language is a crucial skill to be effective as a data scientist. Currently, the most popular language is _Python_, closely followed by _R_. Python is a general-purpose scripting language which sees applications in a wide variety of fields. R is a domain-specific language for statistics, which contains a lot of common statistics tools out of the box.
89 |
90 | Python is by far the most popular language in science, due in no small part to the ease at which it can be used and the vibrant ecosystem of user-generated packages. To install packages, there are two main methods: Pip (invoked as `pip install`), the package manager that comes bundled with Python, and [Anaconda](https://www.anaconda.com) (invoked as `conda install`), a powerful package manager that can install packages for Python, R, and can download executables like Git.
91 |
92 | Unlike R, Python was not built from the ground up with data science in mind, but there are plenty of third party libraries to make up for this. A much more exhaustive list of packages can be found later in this document, but these four packages are a good set of choices to start your data science journey with: [Scikit-Learn](https://scikit-learn.org/stable/index.html) is a general-purpose data science package which implements the most popular algorithms - it also includes rich documentation, tutorials, and examples of the models it implements. Even if you prefer to write your own implementations, Scikit-Learn is a valuable reference to the nuts-and-bolts behind many of the common algorithms you'll find. With [Pandas](https://pandas.pydata.org/), one can collect and analyze their data into a convenient table format. [Numpy](https://numpy.org/) provides very fast tooling for mathematical operations, with a focus on vectors and matrices. [Seaborn](https://seaborn.pydata.org/), itself based on the [Matplotlib](https://matplotlib.org/) package, is a quick way to generate beautiful visualizations of your data, with many good defaults available out of the box, as well as a gallery showing how to produce many common visualizations of your data.
93 |
94 | When embarking on your journey to becoming a data scientist, the choice of language isn't particularly important, and both Python and R have their pros and cons. Pick a language you like, and check out one of the [Free courses](#free-courses) we've listed below!
95 |
96 | ## Real World
97 | **[`^ back to top ^`](#awesome-data-science)**
98 |
99 | Data science is a powerful tool that is utilized in various fields to solve real-world problems by extracting insights and patterns from complex data.
100 |
101 | ### Disaster
102 | **[`^ back to top ^`](#awesome-data-science)**
103 |
104 | - [deprem-ml](https://huggingface.co/deprem-ml) [AYA: Açık Yazılım Ağı](https://linktr.ee/acikyazilimagi) (+25k developers) is trying to help disaster response using artificial intelligence. Everything is open-sourced [afet.org](https://afet.org).
105 |
106 |
107 |
108 | ## Training Resources
109 | **[`^ back to top ^`](#awesome-data-science)**
110 |
111 | How do you learn data science? By doing data science, of course! Okay, okay - that might not be particularly helpful when you're first starting out. In this section, we've listed some learning resources, in a rough order from least to greatest commitment - [Tutorials](#tutorials), [Massively Open Online Courses (MOOCs)](#moocs), [Intensive Programs](#intensive-programs), and [Colleges](#colleges).
112 |
113 |
114 | ### Tutorials
115 | **[`^ back to top ^`](#awesome-data-science)**
116 |
117 | - [1000 Data Science Projects](https://cloud.blobcity.com/#/ps/explore) you can run on the browser with IPython.
118 | - [#tidytuesday](https://github.com/rfordatascience/tidytuesday) A weekly data project aimed at the R ecosystem.
119 | - [Data science your way](https://github.com/jadianes/data-science-your-way)
120 | - [PySpark Cheatsheet](https://github.com/kevinschaich/pyspark-cheatsheet)
121 | - [Machine Learning, Data Science and Deep Learning with Python ](https://www.manning.com/livevideo/machine-learning-data-science-and-deep-learning-with-python)
122 | - [How To Label Data](https://www.lighttag.io/how-to-label-data/)
123 | - [Your Guide to Latent Dirichlet Allocation](https://medium.com/@lettier/how-does-lda-work-ill-explain-using-emoji-108abf40fa7d)
124 | - [Over 1000 Data Science Online Courses at Classpert Online Search Engine](https://classpert.com/search/data-science)
125 | - [Tutorials of source code from the book Genetic Algorithms with Python by Clinton Sheppard](https://github.com/handcraftsman/GeneticAlgorithmsWithPython)
126 | - [Tutorials to get started on signal processings for machine learning](https://github.com/jinglescode/python-signal-processing)
127 | - [Realtime deployment](https://www.microprediction.com/python-1) Tutorial on Python time-series model deployment.
128 | - [Python for Data Science: A Beginner’s Guide](https://learntocodewith.me/posts/python-for-data-science/)
129 | - [Minimum Viable Study Plan for Machine Learning Interviews](https://github.com/khangich/machine-learning-interview)
130 | - [Understand and Know Machine Learning Engineering by Building Solid Projects](http://mlzoomcamp.com/)
131 | - [12 free Data Science projects to practice Python and Pandas](https://www.datawars.io/articles/12-free-data-science-projects-to-practice-python-and-pandas)
132 |
133 |
134 | ### Free Courses
135 | **[`^ back to top ^`](#awesome-data-science)**
136 |
137 | - [Data Scientist with R](https://www.datacamp.com/tracks/data-scientist-with-r)
138 | - [Data Scientist with Python](https://www.datacamp.com/tracks/data-scientist-with-python)
139 | - [Genetic Algorithms OCW Course](https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-034-artificial-intelligence-fall-2010/lecture-videos/lecture-1-introduction-and-scope/)
140 | - [AI Expert Roadmap](https://github.com/AMAI-GmbH/AI-Expert-Roadmap) - Roadmap to becoming an Artificial Intelligence Expert
141 | - [Convex Optimization](https://www.edx.org/course/convex-optimization) - Convex Optimization (basics of convex analysis; least-squares, linear and quadratic programs, semidefinite programming, minimax, extremal volume, and other problems; optimality conditions, duality theory...)
142 | - [Skillcombo - Data Science](https://skillcombo.com/courses/development/data-science/free/) - 1000+ free online Data Science courses
143 | - [Learning from Data](https://home.work.caltech.edu/telecourse.html) - Introduction to machine learning covering basic theory, algorithms and applications
144 | - [Kaggle](https://www.kaggle.com/learn) - Learn about Data Science, Machine Learning, Python etc
145 | - [ML Observability Fundamentals](https://arize.com/ml-observability-fundamentals/) - Learn how to monitor and root-cause production ML issues.
146 | - [Weights & Biases Effective MLOps: Model Development](https://www.wandb.courses/courses/effective-mlops-model-development) - Free Course and Certification for building an end-to-end machine using W&B
147 | - [Python for Machine Learning](https://globalaihub.com/courses/introduction-to-python-the-road-to-machine-learning/) - Start your journey to machine learning with Python, one of the most powerful programming languages.
148 | - [Python for Data Science by Scaler](https://www.scaler.com/topics/course/python-for-data-science/) - This course is designed to empower beginners with the essential skills to excel in today's data-driven world. The comprehensive curriculum will give you a solid foundation in statistics, programming, data visualization, and machine learning.
149 | - [MLSys-NYU-2022](https://github.com/jacopotagliabue/MLSys-NYU-2022/tree/main) - Slides, scripts and materials for the Machine Learning in Finance course at NYU Tandon, 2022.
150 | - [Hands-on Train and Deploy ML](https://github.com/Paulescu/hands-on-train-and-deploy-ml) - A hands-on course to train and deploy a serverless API that predicts crypto prices.
151 |
152 |
153 | ### MOOC's
154 | **[`^ back to top ^`](#awesome-data-science)**
155 |
156 | - [Coursera Introduction to Data Science](https://www.coursera.org/specializations/data-science)
157 | - [Data Science - 9 Steps Courses, A Specialization on Coursera](https://www.coursera.org/specializations/jhu-data-science)
158 | - [Data Mining - 5 Steps Courses, A Specialization on Coursera](https://www.coursera.org/specializations/data-mining)
159 | - [Machine Learning – 5 Steps Courses, A Specialization on Coursera](https://www.coursera.org/specializations/machine-learning)
160 | - [CS 109 Data Science](https://cs109.github.io/2015/)
161 | - [OpenIntro](https://www.openintro.org/)
162 | - [CS 171 Visualization](https://www.cs171.org/#!index.md)
163 | - [Process Mining: Data science in Action](https://www.coursera.org/learn/process-mining)
164 | - [Oxford Deep Learning](https://www.cs.ox.ac.uk/projects/DeepLearn/)
165 | - [Oxford Deep Learning - video](https://www.youtube.com/playlist?list=PLE6Wd9FR--EfW8dtjAuPoTuPcqmOV53Fu)
166 | - [Oxford Machine Learning](https://www.cs.ox.ac.uk/research/ai_ml/index.html)
167 | - [UBC Machine Learning - video](https://www.cs.ubc.ca/~nando/540-2013/lectures.html)
168 | - [Data Science Specialization](https://github.com/DataScienceSpecialization/courses)
169 | - [Coursera Big Data Specialization](https://www.coursera.org/specializations/big-data)
170 | - [Statistical Thinking for Data Science and Analytics by Edx](https://www.edx.org/course/statistical-thinking-for-data-science-and-analytic)
171 | - [Cognitive Class AI by IBM](https://cognitiveclass.ai/)
172 | - [Udacity - Deep Learning](https://www.udacity.com/course/intro-to-tensorflow-for-deep-learning--ud187)
173 | - [Keras in Motion](https://www.manning.com/livevideo/keras-in-motion)
174 | - [Microsoft Professional Program for Data Science](https://academy.microsoft.com/en-us/professional-program/tracks/data-science/)
175 | - [COMP3222/COMP6246 - Machine Learning Technologies](https://tdgunes.com/COMP6246-2019Fall/)
176 | - [CS 231 - Convolutional Neural Networks for Visual Recognition](https://cs231n.github.io/)
177 | - [Coursera Tensorflow in practice](https://www.coursera.org/professional-certificates/tensorflow-in-practice)
178 | - [Coursera Deep Learning Specialization](https://www.coursera.org/specializations/deep-learning)
179 | - [365 Data Science Course](https://365datascience.com/)
180 | - [Coursera Natural Language Processing Specialization](https://www.coursera.org/specializations/natural-language-processing)
181 | - [Coursera GAN Specialization](https://www.coursera.org/specializations/generative-adversarial-networks-gans)
182 | - [Codecademy's Data Science](https://www.codecademy.com/learn/paths/data-science)
183 | - [Linear Algebra](https://ocw.mit.edu/courses/mathematics/18-06-linear-algebra-spring-2010/video-lectures/) - Linear Algebra course by Gilbert Strang
184 | - [A 2020 Vision of Linear Algebra (G. Strang)](https://ocw.mit.edu/resources/res-18-010-a-2020-vision-of-linear-algebra-spring-2020/)
185 | - [Python for Data Science Foundation Course](https://intellipaat.com/academy/course/python-for-data-science-free-training/)
186 | - [Data Science: Statistics & Machine Learning](https://www.coursera.org/specializations/data-science-statistics-machine-learning)
187 | - [Machine Learning Engineering for Production (MLOps)](https://www.coursera.org/specializations/machine-learning-engineering-for-production-mlops)
188 | - [Recommender Systems Specialization from University of Minnesota](https://www.coursera.org/specializations/recommender-systems) is an intermediate/advanced level specialization focused on Recommender System on Coursera platform.
189 | - [Stanford Artificial Intelligence Professional Program](https://online.stanford.edu/programs/artificial-intelligence-professional-program)
190 | - [Data Scientist with Python](https://app.datacamp.com/learn/career-tracks/data-scientist-with-python)
191 | - [Programming with Julia](https://www.udemy.com/course/programming-with-julia/)
192 | - [Scaler Data Science & Machine Learning Program](https://www.scaler.com/data-science-course/)
193 |
194 |
195 |
196 | ### Intensive Programs
197 | **[`^ back to top ^`](#awesome-data-science)**
198 |
199 | - [S2DS](https://www.s2ds.org/)
200 |
201 |
202 | ### Colleges
203 | **[`^ back to top ^`](#awesome-data-science)**
204 |
205 | - [A list of colleges and universities offering degrees in data science.](https://github.com/ryanswanstrom/awesome-datascience-colleges)
206 | - [Data Science Degree @ Berkeley](https://ischoolonline.berkeley.edu/data-science/)
207 | - [Data Science Degree @ UVA](https://datascience.virginia.edu/)
208 | - [Data Science Degree @ Wisconsin](https://datasciencedegree.wisconsin.edu/)
209 | - [MS in Computer Information Systems @ Boston University](https://www.bu.edu/online/programs/graduate-programs/computer-information-systems-masters-degree/)
210 | - [MS in Business Analytics @ ASU Online](https://asuonline.asu.edu/online-degree-programs/graduate/master-science-business-analytics/)
211 | - [MS in Applied Data Science @ Syracuse](https://ischool.syr.edu/academics/applied-data-science-masters-degree/)
212 | - [M.S. Management & Data Science @ Leuphana](https://www.leuphana.de/en/graduate-school/masters-programmes/management-data-science.html)
213 | - [Master of Data Science @ Melbourne University](https://study.unimelb.edu.au/find/courses/graduate/master-of-data-science/#overview)
214 | - [Msc in Data Science @ The University of Edinburgh](https://www.ed.ac.uk/studying/postgraduate/degrees/index.php?r=site/view&id=902)
215 | - [Master of Management Analytics @ Queen's University](https://smith.queensu.ca/grad_studies/mma/index.php)
216 | - [Master of Data Science @ Illinois Institute of Technology](https://www.iit.edu/academics/programs/data-science-mas)
217 | - [Master of Applied Data Science @ The University of Michigan](https://www.si.umich.edu/programs/master-applied-data-science-online)
218 | - [Master Data Science and Artificial Intelligence @ Eindhoven University of Technology](https://www.tue.nl/en/education/graduate-school/master-data-science-and-artificial-intelligence/)
219 | - [Master's Degree in Data Science and Computer Engineering @ University of Granada](https://masteres.ugr.es/datcom/)
220 |
221 | ## The Data Science Toolbox
222 | **[`^ back to top ^`](#awesome-data-science)**
223 |
224 | This section is a collection of packages, tools, algorithms, and other useful items in the data science world.
225 |
226 | ### Algorithms
227 | **[`^ back to top ^`](#awesome-data-science)**
228 |
229 | These are some Machine Learning and Data Mining algorithms and models help you to understand your data and derive meaning from it.
230 |
231 | #### Supervised Learning
232 |
233 | - Regression
234 | - [Linear Regression](https://en.wikipedia.org/wiki/Linear_regression)
235 | - [Ordinary Least Squares](https://en.wikipedia.org/wiki/Ordinary_least_squares)
236 | - [Logistic Regression](https://en.wikipedia.org/wiki/Logistic_regression)
237 | - [Stepwise Regression](https://en.wikipedia.org/wiki/Stepwise_regression)
238 | - [Multivariate Adaptive Regression Splines](https://en.wikipedia.org/wiki/Multivariate_adaptive_regression_spline)
239 | - Locally Estimated Scatterplot Smoothing
240 | - Classification
241 | - [k-nearest neighbor](https://en.wikipedia.org/wiki/K-nearest_neighbors_algorithm)
242 | - [Support Vector Machines](https://en.wikipedia.org/wiki/Support_vector_machine)
243 | - [Decision Trees](https://en.wikipedia.org/wiki/Decision_tree)
244 | - ID3 algorithm
245 | - C4.5 algorithm
246 | - [Ensemble Learning](https://scikit-learn.org/stable/modules/ensemble.html)
247 | - Boosting
248 | - Stacking
249 | - Bagging
250 | - Random Forest
251 | - AdaBoost
252 |
253 | #### Unsupervised Learning
254 | - [Clustering](https://scikit-learn.org/stable/modules/clustering.html#clustering)
255 | - [Hierchical clustering](https://scikit-learn.org/stable/modules/clustering.html#hierarchical-clustering)
256 | - [k-means](https://scikit-learn.org/stable/modules/clustering.html#k-means)
257 | - [Density-based clustering](https://scikit-learn.org/stable/modules/clustering.html#dbscan)
258 | - Fuzzy clustering
259 | - Mixture models
260 | - Dimension Reduction
261 | - [Principal Component Analysis (PCA)](https://scikit-learn.org/stable/modules/decomposition.html#principal-component-analysis-pca)
262 | - [t-SNE; t-distributed Stochastic Neighbor Embedding](https://scikit-learn.org/stable/modules/decomposition.html#principal-component-analysis-pca)
263 | - [Factor Analysis](https://scikit-learn.org/stable/modules/decomposition.html#factor-analysis)
264 | - [Latent Dirichlet Allocation (LDA)](https://scikit-learn.org/stable/modules/decomposition.html#latent-dirichlet-allocation-lda)
265 | - Neural Networks
266 | - Self-organizing map
267 | - Adaptive resonance theory
268 | - Hidden Markov Models (HMM)
269 |
270 | #### Semi-Supervised Learning
271 |
272 | - S3VM
273 | - Clustering
274 | - Generative models
275 | - Low-density separation
276 | - Laplacian regularization
277 | - Heuristic approaches
278 |
279 | #### Reinforcement Learning
280 |
281 | - Q Learning
282 | - SARSA (State-Action-Reward-State-Action) algorithm
283 | - Temporal difference learning
284 |
285 | #### Data Mining Algorithms
286 |
287 | - C4.5
288 | - k-Means
289 | - SVM
290 | - Apriori
291 | - EM
292 | - PageRank
293 | - AdaBoost
294 | - kNN
295 | - Naive Bayes
296 | - CART
297 |
298 | #### Deep Learning architectures
299 |
300 | - Multilayer Perceptron
301 | - Convolutional Neural Network (CNN)
302 | - Recurrent Neural Network (RNN)
303 | - Boltzmann Machines
304 | - Autoencoder
305 | - Generative Adversarial Network (GAN)
306 | - Self-Organized Maps
307 | - Transformer
308 | - Conditional Random Field (CRF)
309 |
310 | ### General Machine Learning Packages
311 | **[`^ back to top ^`](#awesome-data-science)**
312 |
313 | * [scikit-learn](https://scikit-learn.org/)
314 | * [scikit-multilearn](https://github.com/scikit-multilearn/scikit-multilearn)
315 | * [sklearn-expertsys](https://github.com/tmadl/sklearn-expertsys)
316 | * [scikit-feature](https://github.com/jundongl/scikit-feature)
317 | * [scikit-rebate](https://github.com/EpistasisLab/scikit-rebate)
318 | * [seqlearn](https://github.com/larsmans/seqlearn)
319 | * [sklearn-bayes](https://github.com/AmazaspShumik/sklearn-bayes)
320 | * [sklearn-crfsuite](https://github.com/TeamHG-Memex/sklearn-crfsuite)
321 | * [sklearn-deap](https://github.com/rsteca/sklearn-deap)
322 | * [sigopt_sklearn](https://github.com/sigopt/sigopt-sklearn)
323 | * [sklearn-evaluation](https://github.com/edublancas/sklearn-evaluation)
324 | * [scikit-image](https://github.com/scikit-image/scikit-image)
325 | * [scikit-opt](https://github.com/guofei9987/scikit-opt)
326 | * [scikit-posthocs](https://github.com/maximtrp/scikit-posthocs)
327 | * [pystruct](https://github.com/pystruct/pystruct)
328 | * [Shogun](https://www.shogun-toolbox.org/)
329 | * [xLearn](https://github.com/aksnzhy/xlearn)
330 | * [cuML](https://github.com/rapidsai/cuml)
331 | * [causalml](https://github.com/uber/causalml)
332 | * [mlpack](https://github.com/mlpack/mlpack)
333 | * [MLxtend](https://github.com/rasbt/mlxtend)
334 | * [modAL](https://github.com/modAL-python/modAL)
335 | * [Sparkit-learn](https://github.com/lensacom/sparkit-learn)
336 | * [hyperlearn](https://github.com/danielhanchen/hyperlearn)
337 | * [dlib](https://github.com/davisking/dlib)
338 | * [imodels](https://github.com/csinva/imodels)
339 | * [RuleFit](https://github.com/christophM/rulefit)
340 | * [pyGAM](https://github.com/dswah/pyGAM)
341 | * [Deepchecks](https://github.com/deepchecks/deepchecks)
342 | * [scikit-survival](https://scikit-survival.readthedocs.io/en/stable)
343 |
344 | ### Deep Learning Packages
345 |
346 | #### PyTorch Ecosystem
347 | * [PyTorch](https://github.com/pytorch/pytorch)
348 | * [torchvision](https://github.com/pytorch/vision)
349 | * [torchtext](https://github.com/pytorch/text)
350 | * [torchaudio](https://github.com/pytorch/audio)
351 | * [ignite](https://github.com/pytorch/ignite)
352 | * [PyTorchNet](https://github.com/pytorch/tnt)
353 | * [PyToune](https://github.com/GRAAL-Research/poutyne)
354 | * [skorch](https://github.com/skorch-dev/skorch)
355 | * [PyVarInf](https://github.com/ctallec/pyvarinf)
356 | * [pytorch_geometric](https://github.com/pyg-team/pytorch_geometric)
357 | * [GPyTorch](https://github.com/cornellius-gp/gpytorch)
358 | * [pyro](https://github.com/pyro-ppl/pyro)
359 | * [Catalyst](https://github.com/catalyst-team/catalyst)
360 | * [pytorch_tabular](https://github.com/manujosephv/pytorch_tabular)
361 |
362 | #### TensorFlow Ecosystem
363 | * [TensorFlow](https://github.com/tensorflow/tensorflow)
364 | * [TensorLayer](https://github.com/tensorlayer/TensorLayer)
365 | * [TFLearn](https://github.com/tflearn/tflearn)
366 | * [Sonnet](https://github.com/deepmind/sonnet)
367 | * [tensorpack](https://github.com/tensorpack/tensorpack)
368 | * [TRFL](https://github.com/deepmind/trfl)
369 | * [Polyaxon](https://github.com/polyaxon/polyaxon)
370 | * [NeuPy](https://github.com/itdxer/neupy)
371 | * [tfdeploy](https://github.com/riga/tfdeploy)
372 | * [tensorflow-upstream](https://github.com/ROCmSoftwarePlatform/tensorflow-upstream)
373 | * [TensorFlow Fold](https://github.com/tensorflow/fold)
374 | * [tensorlm](https://github.com/batzner/tensorlm)
375 | * [TensorLight](https://github.com/bsautermeister/tensorlight)
376 | * [Mesh TensorFlow](https://github.com/tensorflow/mesh)
377 | * [Ludwig](https://github.com/ludwig-ai/ludwig)
378 | * [TF-Agents](https://github.com/tensorflow/agents)
379 | * [TensorForce](https://github.com/tensorforce/tensorforce)
380 |
381 | #### Keras Ecosystem
382 |
383 | * [Keras](https://keras.io)
384 | * [keras-contrib](https://github.com/keras-team/keras-contrib)
385 | * [Hyperas](https://github.com/maxpumperla/hyperas)
386 | * [Elephas](https://github.com/maxpumperla/elephas)
387 | * [Hera](https://github.com/keplr-io/hera)
388 | * [Spektral](https://github.com/danielegrattarola/spektral)
389 | * [qkeras](https://github.com/google/qkeras)
390 | * [keras-rl](https://github.com/keras-rl/keras-rl)
391 | * [Talos](https://github.com/autonomio/talos)
392 |
393 | #### Visualization Tools
394 | **[`^ back to top ^`](#awesome-data-science)**
395 |
396 | - [altair](https://altair-viz.github.io/)
397 | - [addepar](https://opensource.addepar.com/ember-charts/#/overview)
398 | - [amcharts](https://www.amcharts.com/)
399 | - [anychart](https://www.anychart.com/)
400 | - [bokeh](https://bokeh.org/)
401 | - [Comet](https://www.comet.com/site/products/ml-experiment-tracking/?utm_source=awesome-datascience)
402 | - [slemma](https://slemma.com/)
403 | - [cartodb](https://cartodb.github.io/odyssey.js/)
404 | - [Cube](https://square.github.io/cube/)
405 | - [d3plus](https://d3plus.org/)
406 | - [Data-Driven Documents(D3js)](https://d3js.org/)
407 | - [dygraphs](https://dygraphs.com/)
408 | - [ECharts](https://echarts.baidu.com/index-en.html)
409 | - [exhibit](https://www.simile-widgets.org/exhibit/)
410 | - [gephi](https://gephi.org/)
411 | - [ggplot2](https://ggplot2.tidyverse.org/)
412 | - [Glue](http://docs.glueviz.org/en/latest/index.html)
413 | - [Google Chart Gallery](https://developers.google.com/chart/interactive/docs/gallery)
414 | - [highcarts](https://www.highcharts.com/)
415 | - [import.io](https://www.import.io/)
416 | - [jqplot](https://www.jqplot.com/)
417 | - [Matplotlib](https://matplotlib.org/)
418 | - [nvd3](https://nvd3.org/)
419 | - [Netron](https://github.com/lutzroeder/netron)
420 | - [Openrefine](https://openrefine.org/)
421 | - [plot.ly](https://plot.ly/)
422 | - [raw](https://rawgraphs.io)
423 | - [Seaborn](https://seaborn.pydata.org/)
424 | - [techanjs](https://techanjs.org/)
425 | - [Timeline](https://timeline.knightlab.com/)
426 | - [variancecharts](https://variancecharts.com/index.html)
427 | - [vida](https://vida.io/)
428 | - [vizzu](https://github.com/vizzuhq/vizzu-lib)
429 | - [Wrangler](http://vis.stanford.edu/wrangler/)
430 | - [r2d3](https://www.r2d3.us/visual-intro-to-machine-learning-part-1/)
431 | - [NetworkX](https://networkx.org/)
432 | - [Redash](https://redash.io/)
433 | - [C3](https://c3js.org/)
434 | - [TensorWatch](https://github.com/microsoft/tensorwatch)
435 | - [geomap](https://pypi.org/project/geomap/)
436 |
437 | ### Miscellaneous Tools
438 | **[`^ back to top ^`](#awesome-data-science)**
439 |
440 | | Link | Description |
441 | | --- | --- |
442 | | [The Data Science Lifecycle Process](https://github.com/dslp/dslp) | The Data Science Lifecycle Process is a process for taking data science teams from Idea to Value repeatedly and sustainably. The process is documented in this repo |
443 | | [Data Science Lifecycle Template Repo](https://github.com/dslp/dslp-repo-template) | Template repository for data science lifecycle project |
444 | | [RexMex](https://github.com/AstraZeneca/rexmex) | A general purpose recommender metrics library for fair evaluation. |
445 | | [ChemicalX](https://github.com/AstraZeneca/chemicalx) | A PyTorch based deep learning library for drug pair scoring. |
446 | | [PyTorch Geometric Temporal](https://github.com/benedekrozemberczki/pytorch_geometric_temporal) | Representation learning on dynamic graphs. |
447 | | [Little Ball of Fur](https://github.com/benedekrozemberczki/littleballoffur) | A graph sampling library for NetworkX with a Scikit-Learn like API. |
448 | | [Karate Club](https://github.com/benedekrozemberczki/karateclub) | An unsupervised machine learning extension library for NetworkX with a Scikit-Learn like API. |
449 | | [ML Workspace](https://github.com/ml-tooling/ml-workspace) | All-in-one web-based IDE for machine learning and data science. The workspace is deployed as a Docker container and is preloaded with a variety of popular data science libraries (e.g., Tensorflow, PyTorch) and dev tools (e.g., Jupyter, VS Code) |
450 | | [Neptune.ai](https://neptune.ai) | Community-friendly platform supporting data scientists in creating and sharing machine learning models. Neptune facilitates teamwork, infrastructure management, models comparison and reproducibility. |
451 | | [steppy](https://github.com/minerva-ml/steppy) | Lightweight, Python library for fast and reproducible machine learning experimentation. Introduces very simple interface that enables clean machine learning pipeline design. |
452 | | [steppy-toolkit](https://github.com/minerva-ml/steppy-toolkit) | Curated collection of the neural networks, transformers and models that make your machine learning work faster and more effective. |
453 | | [Datalab from Google](https://cloud.google.com/datalab/docs/) | easily explore, visualize, analyze, and transform data using familiar languages, such as Python and SQL, interactively. |
454 | | [Hortonworks Sandbox](https://www.cloudera.com/downloads/hortonworks-sandbox.html) | is a personal, portable Hadoop environment that comes with a dozen interactive Hadoop tutorials. |
455 | | [R](https://www.r-project.org/) | is a free software environment for statistical computing and graphics. |
456 | | [Tidyverse](https://www.tidyverse.org/) | is an opinionated collection of R packages designed for data science. All packages share an underlying design philosophy, grammar, and data structures. |
457 | | [RStudio](https://www.rstudio.com) | IDE – powerful user interface for R. It’s free and open source, works on Windows, Mac, and Linux. |
458 | | [Python - Pandas - Anaconda](https://www.anaconda.com) | Completely free enterprise-ready Python distribution for large-scale data processing, predictive analytics, and scientific computing |
459 | | [Pandas GUI](https://github.com/adrotog/PandasGUI) | Pandas GUI |
460 | | [Scikit-Learn](https://scikit-learn.org/stable/) | Machine Learning in Python |
461 | | [NumPy](https://numpy.org/) | NumPy is fundamental for scientific computing with Python. It supports large, multi-dimensional arrays and matrices and includes an assortment of high-level mathematical functions to operate on these arrays. |
462 | | [Vaex](https://vaex.io/) | Vaex is a Python library that allows you to visualize large datasets and calculate statistics at high speeds. |
463 | | [SciPy](https://scipy.org/) | SciPy works with NumPy arrays and provides efficient routines for numerical integration and optimization. |
464 | | [Data Science Toolbox](https://www.coursera.org/learn/data-scientists-tools) | Coursera Course |
465 | | [Data Science Toolbox](https://datasciencetoolbox.org/) | Blog |
466 | | [Wolfram Data Science Platform](https://www.wolfram.com/data-science-platform/) | Take numerical, textual, image, GIS or other data and give it the Wolfram treatment, carrying out a full spectrum of data science analysis and visualization and automatically generating rich interactive reports—all powered by the revolutionary knowledge-based Wolfram Language. |
467 | | [Datadog](https://www.datadoghq.com/) | Solutions, code, and devops for high-scale data science. |
468 | | [Variance](https://variancecharts.com/) | Build powerful data visualizations for the web without writing JavaScript |
469 | | [Kite Development Kit](https://kitesdk.org/docs/current/index.html) | The Kite Software Development Kit (Apache License, Version 2.0) , or Kite for short, is a set of libraries, tools, examples, and documentation focused on making it easier to build systems on top of the Hadoop ecosystem. |
470 | | [Domino Data Labs](https://www.dominodatalab.com) | Run, scale, share, and deploy your models — without any infrastructure or setup. |
471 | | [Apache Flink](https://flink.apache.org/) | A platform for efficient, distributed, general-purpose data processing. |
472 | | [Apache Hama](https://hama.apache.org/) | Apache Hama is an Apache Top-Level open source project, allowing you to do advanced analytics beyond MapReduce. |
473 | | [Weka](https://www.cs.waikato.ac.nz/ml/weka/) | Weka is a collection of machine learning algorithms for data mining tasks. |
474 | | [Octave](https://www.gnu.org/software/octave/) | GNU Octave is a high-level interpreted language, primarily intended for numerical computations.(Free Matlab) |
475 | | [Apache Spark](https://spark.apache.org/) | Lightning-fast cluster computing |
476 | | [Hydrosphere Mist](https://github.com/Hydrospheredata/mist) | a service for exposing Apache Spark analytics jobs and machine learning models as realtime, batch or reactive web services. |
477 | | [Data Mechanics](https://www.datamechanics.co) | A data science and engineering platform making Apache Spark more developer-friendly and cost-effective. |
478 | | [Caffe](https://caffe.berkeleyvision.org/) | Deep Learning Framework |
479 | | [Torch](https://torch.ch/) | A SCIENTIFIC COMPUTING FRAMEWORK FOR LUAJIT |
480 | | [Nervana's python based Deep Learning Framework](https://github.com/NervanaSystems/neon) | . |
481 | | [Skale](https://github.com/skale-me/skale) | High performance distributed data processing in NodeJS |
482 | | [Aerosolve](https://airbnb.io/aerosolve/) | A machine learning package built for humans. |
483 | | [Intel framework](https://github.com/intel/idlf) | Intel® Deep Learning Framework |
484 | | [Datawrapper](https://www.datawrapper.de/) | An open source data visualization platform helping everyone to create simple, correct and embeddable charts. Also at [github.com](https://github.com/datawrapper/datawrapper) |
485 | | [Tensor Flow](https://www.tensorflow.org/) | TensorFlow is an Open Source Software Library for Machine Intelligence |
486 | | [Natural Language Toolkit](https://www.nltk.org/) | An introductory yet powerful toolkit for natural language processing and classification |
487 | | [Annotation Lab](https://www.johnsnowlabs.com/annotation-lab/) | Free End-to-End No-Code platform for text annotation and DL model training/tuning. Out-of-the-box support for Named Entity Recognition, Classification, Relation extraction and Assertion Status Spark NLP models. Unlimited support for users, teams, projects, documents. |
488 | | [nlp-toolkit for node.js](https://www.npmjs.com/package/nlp-toolkit) | . |
489 | | [Julia](https://julialang.org) | high-level, high-performance dynamic programming language for technical computing |
490 | | [IJulia](https://github.com/JuliaLang/IJulia.jl) | a Julia-language backend combined with the Jupyter interactive environment |
491 | | [Apache Zeppelin](https://zeppelin.apache.org/) | Web-based notebook that enables data-driven, interactive data analytics and collaborative documents with SQL, Scala and more |
492 | | [Featuretools](https://github.com/alteryx/featuretools) | An open source framework for automated feature engineering written in python |
493 | | [Optimus](https://github.com/hi-primus/optimus) | Cleansing, pre-processing, feature engineering, exploratory data analysis and easy ML with PySpark backend. |
494 | | [Albumentations](https://github.com/albumentations-team/albumentations) | А fast and framework agnostic image augmentation library that implements a diverse set of augmentation techniques. Supports classification, segmentation, detection out of the box. Was used to win a number of Deep Learning competitions at Kaggle, Topcoder and those that were a part of the CVPR workshops. |
495 | | [DVC](https://github.com/iterative/dvc) | An open-source data science version control system. It helps track, organize and make data science projects reproducible. In its very basic scenario it helps version control and share large data and model files. |
496 | | [Lambdo](https://github.com/asavinov/lambdo) | is a workflow engine which significantly simplifies data analysis by combining in one analysis pipeline (i) feature engineering and machine learning (ii) model training and prediction (iii) table population and column evaluation. |
497 | | [Feast](https://github.com/feast-dev/feast) | A feature store for the management, discovery, and access of machine learning features. Feast provides a consistent view of feature data for both model training and model serving. |
498 | | [Polyaxon](https://github.com/polyaxon/polyaxon) | A platform for reproducible and scalable machine learning and deep learning. |
499 | | [LightTag](https://www.lighttag.io/) | Text Annotation Tool for teams |
500 | | [UBIAI](https://ubiai.tools) | Easy-to-use text annotation tool for teams with most comprehensive auto-annotation features. Supports NER, relations and document classification as well as OCR annotation for invoice labeling |
501 | | [Trains](https://github.com/allegroai/clearml) | Auto-Magical Experiment Manager, Version Control & DevOps for AI |
502 | | [Hopsworks](https://github.com/logicalclocks/hopsworks) | Open-source data-intensive machine learning platform with a feature store. Ingest and manage features for both online (MySQL Cluster) and offline (Apache Hive) access, train and serve models at scale. |
503 | | [MindsDB](https://github.com/mindsdb/mindsdb) | MindsDB is an Explainable AutoML framework for developers. With MindsDB you can build, train and use state of the art ML models in as simple as one line of code. |
504 | | [Lightwood](https://github.com/mindsdb/lightwood) | A Pytorch based framework that breaks down machine learning problems into smaller blocks that can be glued together seamlessly with an objective to build predictive models with one line of code. |
505 | | [AWS Data Wrangler](https://github.com/awslabs/aws-data-wrangler) | An open-source Python package that extends the power of Pandas library to AWS connecting DataFrames and AWS data related services (Amazon Redshift, AWS Glue, Amazon Athena, Amazon EMR, etc). |
506 | | [Amazon Rekognition](https://aws.amazon.com/rekognition/) | AWS Rekognition is a service that lets developers working with Amazon Web Services add image analysis to their applications. Catalog assets, automate workflows, and extract meaning from your media and applications.|
507 | | [Amazon Textract](https://aws.amazon.com/textract/) | Automatically extract printed text, handwriting, and data from any document. |
508 | | [Amazon Lookout for Vision](https://aws.amazon.com/lookout-for-vision/) | Spot product defects using computer vision to automate quality inspection. Identify missing product components, vehicle and structure damage, and irregularities for comprehensive quality control.|
509 | | [Amazon CodeGuru](https://aws.amazon.com/codeguru/) | Automate code reviews and optimize application performance with ML-powered recommendations.|
510 | | [CML](https://github.com/iterative/cml) | An open source toolkit for using continuous integration in data science projects. Automatically train and test models in production-like environments with GitHub Actions & GitLab CI, and autogenerate visual reports on pull/merge requests. |
511 | | [Dask](https://dask.org/) | An open source Python library to painlessly transition your analytics code to distributed computing systems (Big Data) |
512 | | [Statsmodels](https://www.statsmodels.org/stable/index.html) | A Python-based inferential statistics, hypothesis testing and regression framework |
513 | | [Gensim](https://radimrehurek.com/gensim/) | An open-source library for topic modeling of natural language text |
514 | | [spaCy](https://spacy.io/) | A performant natural language processing toolkit |
515 | | [Grid Studio](https://github.com/ricklamers/gridstudio) | Grid studio is a web-based spreadsheet application with full integration of the Python programming language. |
516 | |[Python Data Science Handbook](https://github.com/jakevdp/PythonDataScienceHandbook)|Python Data Science Handbook: full text in Jupyter Notebooks|
517 | | [Shapley](https://github.com/benedekrozemberczki/shapley) | A data-driven framework to quantify the value of classifiers in a machine learning ensemble. |
518 | | [DAGsHub](https://dagshub.com) | A platform built on open source tools for data, model and pipeline management. |
519 | | [Deepnote](https://deepnote.com) | A new kind of data science notebook. Jupyter-compatible, with real-time collaboration and running in the cloud. |
520 | | [Valohai](https://valohai.com) | An MLOps platform that handles machine orchestration, automatic reproducibility and deployment. |
521 | | [PyMC3](https://docs.pymc.io/) | A Python Library for Probabalistic Programming (Bayesian Inference and Machine Learning) |
522 | | [PyStan](https://pypi.org/project/pystan/) | Python interface to Stan (Bayesian inference and modeling) |
523 | | [hmmlearn](https://pypi.org/project/hmmlearn/) | Unsupervised learning and inference of Hidden Markov Models |
524 | | [Chaos Genius](https://github.com/chaos-genius/chaos_genius/) | ML powered analytics engine for outlier/anomaly detection and root cause analysis |
525 | | [Nimblebox](https://nimblebox.ai/) | A full-stack MLOps platform designed to help data scientists and machine learning practitioners around the world discover, create, and launch multi-cloud apps from their web browser. |
526 | | [Towhee](https://github.com/towhee-io/towhee) | A Python library that helps you encode your unstructured data into embeddings. |
527 | | [LineaPy](https://github.com/LineaLabs/lineapy) | Ever been frustrated with cleaning up long, messy Jupyter notebooks? With LineaPy, an open source Python library, it takes as little as two lines of code to transform messy development code into production pipelines. |
528 | | [envd](https://github.com/tensorchord/envd) | 🏕️ machine learning development environment for data science and AI/ML engineering teams |
529 | | [Explore Data Science Libraries](https://kandi.openweaver.com/explore/data-science) | A search engine 🔎 tool to discover & find a curated list of popular & new libraries, top authors, trending project kits, discussions, tutorials & learning resources |
530 | | [MLEM](https://github.com/iterative/mlem) | 🐶 Version and deploy your ML models following GitOps principles |
531 | | [MLflow](https://mlflow.org/) | MLOps framework for managing ML models across their full lifecycle |
532 | | [cleanlab](https://github.com/cleanlab/cleanlab) | Python library for data-centric AI and automatically detecting various issues in ML datasets |
533 | | [AutoGluon](https://github.com/awslabs/autogluon) | AutoML to easily produce accurate predictions for image, text, tabular, time-series, and multi-modal data |
534 | | [Arize AI](https://arize.com/) | Arize AI community tier observability tool for monitoring machine learning models in production and root-causing issues such as data quality and performance drift. |
535 | | [Aureo.io](https://aureo.io) | Aureo.io is a low-code platform that focuses on building artificial intelligence. It provides users with the capability to create pipelines, automations and integrate them with artificial intelligence models – all with their basic data. |
536 | | [ERD Lab](https://www.erdlab.io/) - Free cloud based entity relationship diagram (ERD) tool made for developers.
537 | | [Arize-Phoenix](https://docs.arize.com/phoenix) | MLOps in a notebook - uncover insights, surface problems, monitor, and fine tune your models. |
538 | | [Comet](https://github.com/comet-ml/comet-examples) | An MLOps platform with experiment tracking, model production management, a model registry, and full data lineage to support your ML workflow from training straight through to production. |
539 | | [CometLLM](https://github.com/comet-ml/comet-llm) | Log, track, visualize, and search your LLM prompts and chains in one easy-to-use, 100% open-source tool. |
540 |
541 | ## Literature and Media
542 | **[`^ back to top ^`](#awesome-data-science)**
543 |
544 | This section includes some additional reading material, channels to watch, and talks to listen to.
545 |
546 | ### Books
547 | **[`^ back to top ^`](#awesome-data-science)**
548 |
549 | - [Data Science From Scratch: First Principles with Python](https://www.amazon.com/Data-Science-Scratch-Principles-Python-dp-1492041130/dp/1492041130/ref=dp_ob_title_bk)
550 | - [Artificial Intelligence with Python - Tutorialspoint](https://www.tutorialspoint.com/artificial_intelligence_with_python/artificial_intelligence_with_python_tutorial.pdf)
551 | - [Machine Learning from Scratch](https://dafriedman97.github.io/mlbook/content/introduction.html)
552 | - [Probabilistic Machine Learning: An Introduction](https://probml.github.io/pml-book/book1.html)
553 | - [A Comprehensive Guide to Machine Learning](https://www.eecs189.org/static/resources/comprehensive-guide.pdf)
554 | - [How to Lead in Data Science](https://www.manning.com/books/how-to-lead-in-data-science) - Early access
555 | - [Fighting Churn With Data](https://www.manning.com/books/fighting-churn-with-data)
556 | - [Data Science at Scale with Python and Dask](https://www.manning.com/books/data-science-with-python-and-dask)
557 | - [Python Data Science Handbook](https://jakevdp.github.io/PythonDataScienceHandbook/)
558 | - [The Data Science Handbook: Advice and Insights from 25 Amazing Data Scientists](https://www.thedatasciencehandbook.com/)
559 | - [Think Like a Data Scientist](https://www.manning.com/books/think-like-a-data-scientist)
560 | - [Introducing Data Science](https://www.manning.com/books/introducing-data-science)
561 | - [Practical Data Science with R](https://www.manning.com/books/practical-data-science-with-r)
562 | - [Everyday Data Science](https://www.amazon.com/dp/B08TZ1MT3W/ref=cm_sw_r_cp_apa_fabc_a0ceGbWECF9A8) & [(cheaper PDF version)](https://gum.co/everydaydata)
563 | - [Exploring Data Science](https://www.manning.com/books/exploring-data-science) - free eBook sampler
564 | - [Exploring the Data Jungle](https://www.manning.com/books/exploring-the-data-jungle) - free eBook sampler
565 | - [Classic Computer Science Problems in Python](https://www.manning.com/books/classic-computer-science-problems-in-python)
566 | - [Math for Programmers](https://www.manning.com/books/math-for-programmers) Early access
567 | - [R in Action, Third Edition](https://www.manning.com/books/r-in-action-third-edition) Early access
568 | - [Data Science Bookcamp](https://www.manning.com/books/data-science-bookcamp) Early access
569 | - [Data Science Thinking: The Next Scientific, Technological and Economic Revolution](https://www.springer.com/gp/book/9783319950914)
570 | - [Applied Data Science: Lessons Learned for the Data-Driven Business](https://www.springer.com/gp/book/9783030118204)
571 | - [The Data Science Handbook](https://www.amazon.com/Data-Science-Handbook-Field-Cady/dp/1119092949)
572 | - [Essential Natural Language Processing](https://www.manning.com/books/getting-started-with-natural-language-processing) - Early access
573 | - [Mining Massive Datasets](https://www.mmds.org/) - free e-book comprehended by an online course
574 | - [Pandas in Action](https://www.manning.com/books/pandas-in-action) - Early access
575 | - [Genetic Algorithms and Genetic Programming](https://www.taylorfrancis.com/books/9780429141973)
576 | - [Advances in Evolutionary Algorithms](https://www.intechopen.com/books/advances_in_evolutionary_algorithms) - Free Download
577 | - [Genetic Programming: New Approaches and Successful Applications](https://www.intechopen.com/books/genetic-programming-new-approaches-and-successful-applications) - Free Download
578 | - [Evolutionary Algorithms](https://www.intechopen.com/books/evolutionary-algorithms) - Free Download
579 | - [Advances in Genetic Programming, Vol. 3](https://www.cs.bham.ac.uk/~wbl/aigp3/) - Free Download
580 | - [Global Optimization Algorithms: Theory and Application](https://www.it-weise.de/projects/book.pdf) - Free Download
581 | - [Genetic Algorithms and Evolutionary Computation](https://www.talkorigins.org/faqs/genalg/genalg.html) - Free Download
582 | - [Convex Optimization](https://web.stanford.edu/~boyd/cvxbook/bv_cvxbook.pdf) - Convex Optimization book by Stephen Boyd - Free Download
583 | - [Data Analysis with Python and PySpark](https://www.manning.com/books/data-analysis-with-python-and-pyspark) - Early access
584 | - [R for Data Science](https://r4ds.had.co.nz/)
585 | - [Build a Career in Data Science](https://www.manning.com/books/build-a-career-in-data-science)
586 | - [Machine Learning Bookcamp](https://mlbookcamp.com/) - Early access
587 | - [Hands-On Machine Learning with Scikit-Learn, Keras, and TensorFlow, 2nd Edition](https://www.oreilly.com/library/view/hands-on-machine-learning/9781492032632/)
588 | - [Effective Data Science Infrastructure](https://www.manning.com/books/effective-data-science-infrastructure)
589 | - [Practical MLOps: How to Get Ready for Production Models](https://valohai.com/mlops-ebook/)
590 | - [Data Analysis with Python and PySpark](https://www.manning.com/books/data-analysis-with-python-and-pyspark)
591 | - [Regression, a Friendly guide](https://www.manning.com/books/regression-a-friendly-guide) - Early access
592 | - [Streaming Systems: The What, Where, When, and How of Large-Scale Data Processing](https://www.oreilly.com/library/view/streaming-systems/9781491983867/)
593 | - [Data Science at the Command Line: Facing the Future with Time-Tested Tools](https://www.oreilly.com/library/view/data-science-at/9781491947845/)
594 | - [Machine Learning - CIn UFPE](https://www.cin.ufpe.br/~cavmj/Machine%20-%20Learning%20-%20Tom%20Mitchell.pdf)
595 | - [Machine Learning with Python - Tutorialspoint](https://www.tutorialspoint.com/machine_learning_with_python/machine_learning_with_python_tutorial.pdf)
596 | - [Deep Learning](https://www.deeplearningbook.org/)
597 | - [Designing Cloud Data Platforms](https://www.manning.com/books/designing-cloud-data-platforms) - Early access
598 | - [An Introduction to Statistical Learning with Applications in R](https://www.statlearning.com/)
599 | - [The Elements of Statistical Learning: Data Mining, Inference, and Prediction](https://hastie.su.domains/ElemStatLearn/)
600 | - [Deep Learning with PyTorch](https://www.simonandschuster.com/books/Deep-Learning-with-PyTorch/Eli-Stevens/9781617295263)
601 | - [Neural Networks and Deep Learning](https://neuralnetworksanddeeplearning.com)
602 | - [Deep Learning Cookbook](https://www.oreilly.com/library/view/deep-learning-cookbook/9781491995839/)
603 | - [Introduction to Machine Learning with Python](https://www.oreilly.com/library/view/introduction-to-machine/9781449369880/)
604 | - [Artificial Intelligence: Foundations of Computational Agents, 2nd Edition](https://artint.info/index.html) - Free HTML version
605 | - [The Quest for Artificial Intelligence: A History of Ideas and Achievements](https://ai.stanford.edu/~nilsson/QAI/qai.pdf) - Free Download
606 | - [Graph Algorithms for Data Science](https://www.manning.com/books/graph-algorithms-for-data-science) - Early access
607 | - [Data Mesh in Action](https://www.manning.com/books/data-mesh-in-action) - Early access
608 | - [Julia for Data Analysis](https://www.manning.com/books/julia-for-data-analysis) - Early access
609 | - [Casual Inference for Data Science](https://www.manning.com/books/julia-for-data-analysis) - Early access
610 | - [Regular Expression Puzzles and AI Coding Assistants](https://www.manning.com/books/regular-expression-puzzles-and-ai-coding-assistants) by David Mertz
611 | - [Dive into Deep Learning](https://d2l.ai/)
612 | - [Data for All](https://www.manning.com/books/data-for-all)
613 | - [Interpretable Machine Learning: A Guide for Making Black Box Models Explainable](https://christophm.github.io/interpretable-ml-book/) - Free GitHub version
614 | - [Foundations of Data Science](https://www.cs.cornell.edu/jeh/book.pdf) Free Download
615 | - [Comet for DataScience: Enhance your ability to manage and optimize the life cycle of your data science project](https://www.amazon.com/Comet-Data-Science-Enhance-optimize/dp/1801814430)
616 | - [Software Engineering for Data Scientists](https://www.manning.com/books/software-engineering-for-data-scientists) - Early access
617 | - [Julia for Data Science](https://www.manning.com/books/julia-for-data-science) - Early access
618 |
619 |
620 | #### Book Deals (Affiliated) 🛍
621 |
622 | - [eBook sale - Save up to 45% on eBooks!](https://www.manning.com/?utm_source=mikrobusiness&utm_medium=affiliate&utm_campaign=ebook_sale_8_8_22)
623 |
624 | - [Causal Machine Learning](https://www.manning.com/books/causal-machine-learning?utm_source=mikrobusiness&utm_medium=affiliate&utm_campaign=book_ness_causal_7_26_22&a_aid=mikrobusiness&a_bid=43a2198b
625 | )
626 | - [Managing ML Projects](https://www.manning.com/books/managing-machine-learning-projects?utm_source=mikrobusiness&utm_medium=affiliate&utm_campaign=book_thompson_managing_6_14_22)
627 | - [Causal Inference for Data Science](https://www.manning.com/books/causal-inference-for-data-science?utm_source=mikrobusiness&utm_medium=affiliate&utm_campaign=book_ruizdevilla_causal_6_6_22)
628 | - [Data for All](https://www.manning.com/books/data-for-all?utm_source=mikrobusiness&utm_medium=affiliate)
629 |
630 | ### Journals, Publications and Magazines
631 | **[`^ back to top ^`](#awesome-data-science)**
632 |
633 | - [ICML](https://icml.cc/2015/) - International Conference on Machine Learning
634 | - [GECCO](https://gecco-2019.sigevo.org/index.html/HomePage) - The Genetic and Evolutionary Computation Conference (GECCO)
635 | - [epjdatascience](https://epjdatascience.springeropen.com/)
636 | - [Journal of Data Science](https://jds-online.org/journal/JDS) - an international journal devoted to applications of statistical methods at large
637 | - [Big Data Research](https://www.journals.elsevier.com/big-data-research)
638 | - [Journal of Big Data](https://journalofbigdata.springeropen.com/)
639 | - [Big Data & Society](https://journals.sagepub.com/home/bds)
640 | - [Data Science Journal](https://www.jstage.jst.go.jp/browse/dsj)
641 | - [datatau.com/news](https://www.datatau.com/news) - Like Hacker News, but for data
642 | - [Data Science Trello Board](https://trello.com/b/rbpEfMld/data-science)
643 | - [Medium Data Science Topic](https://medium.com/tag/data-science) - Data Science related publications on medium
644 | - [Towards Data Science Genetic Algorithm Topic](https://towardsdatascience.com/introduction-to-genetic-algorithms-including-example-code-e396e98d8bf3#:~:text=A%20genetic%20algorithm%20is%20a,offspring%20of%20the%20next%20generation.) -Genetic Algorithm related Publications onTowards Data Science
645 | - [all AI news](https://allainews.com/) - The AI/ML/Big Data news aggregator platform
646 |
647 | ### Newsletters
648 | **[`^ back to top ^`](#awesome-data-science)**
649 |
650 | - [AI Digest](https://aidigest.net/). A weekly newsletter to keep up to date with AI, machine learning, and data science. [Archive](https://aidigest.net/digests).
651 | - [DataTalks.Club](https://datatalks.club). A weekly newsletter about data-related things. [Archive](https://us19.campaign-archive.com/home/?u=0d7822ab98152f5afc118c176&id=97178021aa).
652 | - [The Analytics Engineering Roundup](https://roundup.getdbt.com/about). A newsletter about data science. [Archive](https://roundup.getdbt.com/archive).
653 |
654 | ### Bloggers
655 | **[`^ back to top ^`](#awesome-data-science)**
656 |
657 | - [Wes McKinney](https://wesmckinney.com/archives.html) - Wes McKinney Archives.
658 | - [Matthew Russell](https://miningthesocialweb.com/) - Mining The Social Web.
659 | - [Greg Reda](https://www.gregreda.com/) - Greg Reda Personal Blog
660 | - [Kevin Davenport](https://kldavenport.com/) - Kevin Davenport Personal Blog
661 | - [Julia Evans](https://jvns.ca/) - Recurse Center alumna
662 | - [Hakan Kardas](https://www.cse.unr.edu/~hkardes/) - Personal Web Page
663 | - [Sean J. Taylor](https://seanjtaylor.com/) - Personal Web Page
664 | - [Drew Conway](https://drewconway.com/) - Personal Web Page
665 | - [Hilary Mason](https://hilarymason.com/) - Personal Web Page
666 | - [Noah Iliinsky](https://complexdiagrams.com/) - Personal Blog
667 | - [Matt Harrison](https://hairysun.com/) - Personal Blog
668 | - [Vamshi Ambati](https://allthingsds.wordpress.com/) - AllThings Data Sciene
669 | - [Prash Chan](https://www.mdmgeek.com/) - Tech Blog on Master Data Management And Every Buzz Surrounding It
670 | - [Clare Corthell](https://datasciencemasters.org/) - The Open Source Data Science Masters
671 | - [Paul Miller](https://cloudofdata.com/) Based in the UK and working globally, Cloud of Data's consultancy services help clients understand the implications of taking data and more to the Cloud.
672 | - [Data Science London](https://datasciencelondon.org/) Data Science London is a non-profit organization dedicated to the free, open, dissemination of data science.
673 | We are the largest data science community in Europe.
674 | We are more than 3,190 data scientists and data geeks in our community.
675 | - [Datawrangling](http://www.datawrangling.org) by Peter Skomoroch. MACHINE LEARNING, DATA MINING, AND MORE
676 | - [Quora Data Science](https://www.quora.com/topic/Data-Science) - Data Science Questions and Answers from experts
677 | - [Siah](https://openresearch.wordpress.com/) a PhD student at Berkeley
678 | - [Louis Dorard](https://www.ownml.co/blog/) a technology guy with a penchant for the web and for data, big and small
679 | - [Machine Learning Mastery](https://machinelearningmastery.com/) about helping professional programmers to confidently apply machine learning algorithms to address complex problems.
680 | - [Daniel Forsyth](https://www.danielforsyth.me/) - Personal Blog
681 | - [Data Science Weekly](https://www.datascienceweekly.org/) - Weekly News Blog
682 | - [Revolution Analytics](https://blog.revolutionanalytics.com/) - Data Science Blog
683 | - [R Bloggers](https://www.r-bloggers.com/) - R Bloggers
684 | - [The Practical Quant](https://practicalquant.blogspot.com/) Big data
685 | - [Yet Another Data Blog](https://yet-another-data-blog.blogspot.com/) Yet Another Data Blog
686 | - [Spenczar](https://spenczar.com/) a data scientist at _Twitch_. I handle the whole data pipeline, from tracking to model-building to reporting.
687 | - [KD Nuggets](https://www.kdnuggets.com/) Data Mining, Analytics, Big Data, Data, Science not a blog a portal
688 | - [Meta Brown](https://www.metabrown.com/blog/) - Personal Blog
689 | - [Data Scientist](https://datascientists.net/) is building the data scientist culture.
690 | - [WhatSTheBigData](https://whatsthebigdata.com/) is some of, all of, or much more than the above and this blog explores its impact on information technology, the business world, government agencies, and our lives.
691 | - [Tevfik Kosar](https://magnus-notitia.blogspot.com/) - Magnus Notitia
692 | - [New Data Scientist](https://newdatascientist.blogspot.com/) How a Social Scientist Jumps into the World of Big Data
693 | - [Harvard Data Science](https://harvarddatascience.com/) - Thoughts on Statistical Computing and Visualization
694 | - [Data Science 101](https://ryanswanstrom.com/datascience101/) - Learning To Be A Data Scientist
695 | - [Kaggle Past Solutions](https://www.chioka.in/kaggle-competition-solutions/)
696 | - [DataScientistJourney](https://datascientistjourney.wordpress.com/category/data-science/)
697 | - [NYC Taxi Visualization Blog](https://chriswhong.github.io/nyctaxi/)
698 | - [Learning Lover](https://learninglover.com/blog/)
699 | - [Dataists](https://www.dataists.com/)
700 | - [Data-Mania](https://www.data-mania.com/)
701 | - [Data-Magnum](https://data-magnum.com/)
702 | - [P-value](https://www.p-value.info/) - Musings on data science, machine learning and stats.
703 | - [datascopeanalytics](https://datascopeanalytics.com/blog/)
704 | - [Digital transformation](https://tarrysingh.com/)
705 | - [datascientistjourney](https://datascientistjourney.wordpress.com/category/data-science/)
706 | - [Data Mania Blog](https://www.data-mania.com/blog/) - [The File Drawer](https://chris-said.io/) - Chris Said's science blog
707 | - [Emilio Ferrara's web page](https://www.emilio.ferrara.name/)
708 | - [DataNews](https://datanews.tumblr.com/)
709 | - [Reddit TextMining](https://www.reddit.com/r/textdatamining/)
710 | - [Periscopic](https://periscopic.com/#!/news)
711 | - [Hilary Parker](https://hilaryparker.com/)
712 | - [Data Stories](https://datastori.es/)
713 | - [Data Science Lab](https://datasciencelab.wordpress.com/)
714 | - [Meaning of](https://www.kennybastani.com/)
715 | - [Adventures in Data Land](https://blog.smola.org)
716 | - [DATA MINERS BLOG](https://blog.data-miners.com/)
717 | - [Dataclysm](https://theblog.okcupid.com/)
718 | - [FlowingData](https://flowingdata.com/) - Visualization and Statistics
719 | - [Calculated Risk](https://www.calculatedriskblog.com/)
720 | - [O'reilly Learning Blog](https://www.oreilly.com/content/topics/oreilly-learning/)
721 | - [Dominodatalab](https://blog.dominodatalab.com/)
722 | - [i am trask](https://iamtrask.github.io/) - A Machine Learning Craftsmanship Blog
723 | - [Vademecum of Practical Data Science](https://datasciencevademecum.wordpress.com/) - Handbook and recipes for data-driven solutions of real-world problems
724 | - [Dataconomy](https://dataconomy.com/) - A blog on the new emerging data economy
725 | - [Springboard](https://www.springboard.com/blog/) - A blog with resources for data science learners
726 | - [Analytics Vidhya](https://www.analyticsvidhya.com/) - A full-fledged website about data science and analytics study material.
727 | - [Occam's Razor](https://www.kaushik.net/avinash/) - Focused on Web Analytics.
728 | - [Data School](https://www.dataschool.io/) - Data science tutorials for beginners!
729 | - [Colah's Blog](https://colah.github.io) - Blog for understanding Neural Networks!
730 | - [Sebastian's Blog](https://ruder.io/#open) - Blog for NLP and transfer learning!
731 | - [Distill](https://distill.pub) - Dedicated to clear explanations of machine learning!
732 | - [Chris Albon's Website](https://chrisalbon.com/) - Data Science and AI notes
733 | - [Andrew Carr](https://andrewnc.github.io/blog/blog.html) - Data Science with Esoteric programming languages
734 | - [floydhub](https://blog.floydhub.com/introduction-to-genetic-algorithms/) - Blog for Evolutionary Algorithms
735 | - [Jingles](https://jinglescode.github.io/) - Review and extract key concepts from academic papers
736 | - [nbshare](https://www.nbshare.io/notebooks/data-science/) - Data Science notebooks
737 | - [Deep and Shallow](https://deep-and-shallow.com/) - All things Deep and Shallow in Data Science
738 | - [Loic Tetrel](https://ltetrel.github.io/) - Data science blog
739 | - [Chip Huyen's Blog](https://huyenchip.com/blog/) - ML Engineering, MLOps, and the use of ML in startups
740 | - [Maria Khalusova](https://www.mariakhalusova.com/) - Data science blog
741 | - [Aditi Rastogi](https://medium.com/@aditi2507rastogi) - ML,DL,Data Science blog
742 | - [Santiago Basulto](https://medium.com/@santiagobasulto) - Data Science with Python
743 |
744 | ### Presentations
745 | **[`^ back to top ^`](#awesome-data-science)**
746 |
747 | - [How to Become a Data Scientist](https://www.slideshare.net/ryanorban/how-to-become-a-data-scientist)
748 | - [Introduction to Data Science](https://www.slideshare.net/NikoVuokko/introduction-to-data-science-25391618)
749 | - [Intro to Data Science for Enterprise Big Data](https://www.slideshare.net/pacoid/intro-to-data-science-for-enterprise-big-data)
750 | - [How to Interview a Data Scientist](https://www.slideshare.net/dtunkelang/how-to-interview-a-data-scientist)
751 | - [How to Share Data with a Statistician](https://github.com/jtleek/datasharing)
752 | - [The Science of a Great Career in Data Science](https://www.slideshare.net/katemats/the-science-of-a-great-career-in-data-science)
753 | - [What Does a Data Scientist Do?](https://www.slideshare.net/datasciencelondon/big-data-sorry-data-science-what-does-a-data-scientist-do)
754 | - [Building Data Start-Ups: Fast, Big, and Focused](https://www.slideshare.net/medriscoll/driscoll-strata-buildingdatastartups25may2011clean)
755 | - [How to win data science competitions with Deep Learning](https://www.slideshare.net/0xdata/how-to-win-data-science-competitions-with-deep-learning)
756 | - [Full-Stack Data Scientist](https://www.slideshare.net/AlexeyGrigorev/fullstack-data-scientist)
757 |
758 | ### Podcasts
759 | **[`^ back to top ^`](#awesome-data-science)**
760 |
761 | - [AI at Home](https://podcasts.apple.com/us/podcast/data-science-at-home/id1069871378)
762 | - [AI Today](https://www.cognilytica.com/aitoday/)
763 | - [Adversarial Learning](https://adversariallearning.com/)
764 | - [Becoming a Data Scientist](https://www.becomingadatascientist.com/category/podcast/)
765 | - [Chai time Data Science](https://www.youtube.com/playlist?list=PLLvvXm0q8zUbiNdoIazGzlENMXvZ9bd3x)
766 | - [Data Crunch](https://datacrunchcorp.com/data-crunch-podcast/)
767 | - [Data Engineering Podcast](https://www.dataengineeringpodcast.com/)
768 | - [Data Science at Home](https://datascienceathome.com/)
769 | - [Data Science Mixer](https://community.alteryx.com/t5/Data-Science-Mixer/bg-p/mixer)
770 | - [Data Skeptic](https://dataskeptic.com/)
771 | - [Data Stories](https://datastori.es/)
772 | - [Datacast](https://jameskle.com/writes/category/Datacast)
773 | - [DataFramed](https://www.datacamp.com/community/podcast)
774 | - [DataTalks.Club](https://anchor.fm/datatalksclub)
775 | - [Gradient Dissent](https://wandb.ai/fully-connected/gradient-dissent)
776 | - [Learning Machines 101](https://www.learningmachines101.com/)
777 | - [Let's Data (Brazil)](https://www.youtube.com/playlist?list=PLn_z5E4dh_Lj5eogejMxfOiNX3nOhmhmM)
778 | - [Linear Digressions](https://lineardigressions.com/)
779 | - [Not So Standard Deviations](https://nssdeviations.com/)
780 | - [O'Reilly Data Show Podcast](https://www.oreilly.com/radar/topics/oreilly-data-show-podcast/)
781 | - [Partially Derivative](https://partiallyderivative.com/)
782 | - [Superdatascience](https://www.superdatascience.com/podcast/)
783 | - [The Data Engineering Show](https://www.dataengineeringshow.com/)
784 | - [The Radical AI Podcast](https://www.radicalai.org/)
785 | - [The Robot Brains Podcast](https://www.therobotbrains.ai/)
786 | - [What's The Point](https://fivethirtyeight.com/tag/whats-the-point/)
787 | - [How AI Built This](https://how-ai-built-this.captivate.fm/)
788 |
789 | ### YouTube Videos & Channels
790 | **[`^ back to top ^`](#awesome-data-science)**
791 |
792 | - [What is machine learning?](https://www.youtube.com/watch?v=WXHM_i-fgGo)
793 | - [Andrew Ng: Deep Learning, Self-Taught Learning and Unsupervised Feature Learning](https://www.youtube.com/watch?v=n1ViNeWhC24)
794 | - [Data36 - Data Science for Beginners by Tomi Mester](https://www.youtube.com/c/TomiMesterData36comDataScienceForBeginners)
795 | - [Deep Learning: Intelligence from Big Data](https://www.youtube.com/watch?v=czLI3oLDe8M)
796 | - [Interview with Google's AI and Deep Learning 'Godfather' Geoffrey Hinton](https://www.youtube.com/watch?v=1Wp3IIpssEc)
797 | - [Introduction to Deep Learning with Python](https://www.youtube.com/watch?v=S75EdAcXHKk)
798 | - [What is machine learning, and how does it work?](https://www.youtube.com/watch?v=elojMnjn4kk)
799 | - [Data School](https://www.youtube.com/channel/UCnVzApLJE2ljPZSeQylSEyg) - Data Science Education
800 | - [Neural Nets for Newbies by Melanie Warrick (May 2015)](https://www.youtube.com/watch?v=Cu6A96TUy_o)
801 | - [Neural Networks video series by Hugo Larochelle](https://www.youtube.com/playlist?list=PL6Xpj9I5qXYEcOhn7TqghAJ6NAPrNmUBH)
802 | - [Google DeepMind co-founder Shane Legg - Machine Super Intelligence](https://www.youtube.com/watch?v=evNCyRL3DOU)
803 | - [Data Science Primer](https://www.youtube.com/watch?v=cHzvYxBN9Ls&list=PLPqVjP3T4RIRsjaW07zoGzH-Z4dBACpxY)
804 | - [Data Science with Genetic Algorithms](https://www.youtube.com/watch?v=lpD38NxTOnk)
805 | - [Data Science for Beginners](https://www.youtube.com/playlist?list=PL2zq7klxX5ATMsmyRazei7ZXkP1GHt-vs)
806 | - [DataTalks.Club](https://www.youtube.com/channel/UCDvErgK0j5ur3aLgn6U-LqQ)
807 | - [Mildlyoverfitted - Tutorials on intermediate ML/DL topics](https://www.youtube.com/channel/UCYBSjwkGTK06NnDnFsOcR7g)
808 | - [mlops.community - Interviews of industry experts about production ML](https://www.youtube.com/channel/UCYBSjwkGTK06NnDnFsOcR7g)
809 | - [ML Street Talk - Unabashedly technical and non-commercial, so you will hear no annoying pitches.](https://www.youtube.com/c/machinelearningstreettalk)
810 | - [Neural networks by 3Blue1Brown ](https://www.youtube.com/playlist?list=PLZHQObOWTQDNU6R1_67000Dx_ZCJB-3pi)
811 | - [Neural networks from scratch by Sentdex](https://www.youtube.com/playlist?list=PLQVvvaa0QuDcjD5BAw2DxE6OF2tius3V3)
812 | - [Manning Publications YouTube channel](https://www.youtube.com/c/ManningPublications/featured)
813 | - [Ask Dr Chong: How to Lead in Data Science - Part 1](https://youtu.be/JYuQZii5o58)
814 | - [Ask Dr Chong: How to Lead in Data Science - Part 2](https://youtu.be/SzqIXV-O-ko)
815 | - [Ask Dr Chong: How to Lead in Data Science - Part 3](https://youtu.be/Ogwm7k_smTA)
816 | - [Ask Dr Chong: How to Lead in Data Science - Part 4](https://youtu.be/a9usjdzTxTU)
817 | - [Ask Dr Chong: How to Lead in Data Science - Part 5](https://youtu.be/MYdQq-F3Ws0)
818 | - [Ask Dr Chong: How to Lead in Data Science - Part 6](https://youtu.be/LOOt4OVC3hY)
819 | - [Regression Models: Applying simple Poisson regression](https://www.youtube.com/watch?v=9Hk8K8jhiOo)
820 | - [Deep Learning Architectures](https://www.youtube.com/playlist?list=PLv8Cp2NvcY8DpVcsmOT71kymgMmcr59Mf)
821 |
822 | ## Socialize
823 | **[`^ back to top ^`](#awesome-data-science)**
824 |
825 | Below are some Social Media links. Connect with other data scientists!
826 |
827 | - [Facebook Accounts](#facebook-accounts)
828 | - [Twitter Accounts](#twitter-accounts)
829 | - [Telegram Channels](#telegram-channels)
830 | - [Slack Communities](#slack-communities)
831 | - [GitHub Groups](#github-groups)
832 | - [Data Science Competitions](#data-science-competitions)
833 |
834 |
835 | ### Facebook Accounts
836 | **[`^ back to top ^`](#awesome-data-science)**
837 |
838 | - [Data](https://www.facebook.com/data)
839 | - [Big Data Scientist](https://www.facebook.com/Bigdatascientist)
840 | - [Data Science Day](https://www.facebook.com/datascienceday/)
841 | - [Data Science Academy](https://www.facebook.com/nycdatascience)
842 | - [Facebook Data Science Page](https://www.facebook.com/pages/Data-science/431299473579193?ref=br_rs)
843 | - [Data Science London](https://www.facebook.com/pages/Data-Science-London/226174337471513)
844 | - [Data Science Technology and Corporation](https://www.facebook.com/DataScienceTechnologyCorporation?ref=br_rs)
845 | - [Data Science - Closed Group](https://www.facebook.com/groups/1394010454157077/?ref=br_rs)
846 | - [Center for Data Science](https://www.facebook.com/centerdatasciences?ref=br_rs)
847 | - [Big data hadoop NOSQL Hive Hbase](https://www.facebook.com/groups/bigdatahadoop/)
848 | - [Analytics, Data Mining, Predictive Modeling, Artificial Intelligence](https://www.facebook.com/groups/data.analytics/)
849 | - [Big Data Analytics using R](https://www.facebook.com/groups/434352233255448/)
850 | - [Big Data Analytics with R and Hadoop](https://www.facebook.com/groups/rhadoop/)
851 | - [Big Data Learnings](https://www.facebook.com/groups/bigdatalearnings/)
852 | - [Big Data, Data Science, Data Mining & Statistics](https://www.facebook.com/groups/bigdatastatistics/)
853 | - [BigData/Hadoop Expert](https://www.facebook.com/groups/BigDataExpert/)
854 | - [Data Mining / Machine Learning / AI](https://www.facebook.com/groups/machinelearningforum/)
855 | - [Data Mining/Big Data - Social Network Ana](https://www.facebook.com/groups/dataminingsocialnetworks/)
856 | - [Vademecum of Practical Data Science](https://www.facebook.com/datasciencevademecum)
857 | - [Veri Bilimi Istanbul](https://www.facebook.com/groups/veribilimiistanbul/)
858 | - [The Data Science Blog](https://www.facebook.com/theDataScienceBlog/)
859 |
860 |
861 | ### Twitter Accounts
862 | **[`^ back to top ^`](#awesome-data-science)**
863 |
864 | | Twitter | Description |
865 | | --- | --- |
866 | | [Big Data Combine](https://twitter.com/BigDataCombine) | Rapid-fire, live tryouts for data scientists seeking to monetize their models as trading strategies |
867 | | Big Data Mania | Data Viz Wiz , Data Journalist , Growth Hacker , Author of Data Science for Dummies (2015) |
868 | | [Big Data Science](https://twitter.com/analyticbridge) | Big Data, Data Science, Predictive Modeling, Business Analytics, Hadoop, Decision and Operations Research. |
869 | | Charlie Greenbacker | Director of Data Science at @ExploreAltamira |
870 | | [Chris Said](https://twitter.com/Chris_Said) | Data scientist at Twitter |
871 | | [Clare Corthell](https://twitter.com/clarecorthell) | Dev, Design, Data Science @mattermark #hackerei |
872 | | [DADI Charles-Abner](https://twitter.com/DadiCharles) | #datascientist @Ekimetrics. , #machinelearning #dataviz #DynamicCharts #Hadoop #R #Python #NLP #Bitcoin #dataenthousiast |
873 | | [Data Science Central](https://twitter.com/DataScienceCtrl) | Data Science Central is the industry's single resource for Big Data practitioners. |
874 | | [Data Science London](https://twitter.com/ds_ldn) | Data Science. Big Data. Data Hacks. Data Junkies. Data Startups. Open Data |
875 | | [Data Science Renee](https://twitter.com/BecomingDataSci) | Documenting my path from SQL Data Analyst pursuing an Engineering Master's Degree to Data Scientist |
876 | | [Data Science Report](https://twitter.com/TedOBrien93) | Mission is to help guide & advance careers in Data Science & Analytics |
877 | | [Data Science Tips](https://twitter.com/datasciencetips) | Tips and Tricks for Data Scientists around the world! #datascience #bigdata |
878 | | [Data Vizzard](https://twitter.com/DataVisualizati) | DataViz, Security, Military |
879 | | [DataScienceX](https://twitter.com/DataScienceX) | |
880 | | deeplearning4j | |
881 | | [DJ Patil](https://twitter.com/dpatil) | White House Data Chief, VP @ RelateIQ. |
882 | | [Domino Data Lab](https://twitter.com/DominoDataLab) | |
883 | | [Drew Conway](https://twitter.com/drewconway) | Data nerd, hacker, student of conflict. |
884 | | Emilio Ferrara | #Networks, #MachineLearning and #DataScience. I work on #Social Media. Postdoc at @IndianaUniv |
885 | | [Erin Bartolo](https://twitter.com/erinbartolo) | Running with #BigData--enjoying a love/hate relationship with its hype. @iSchoolSU #DataScience Program Mgr. |
886 | | [Greg Reda](https://twitter.com/gjreda) | Working @ _GrubHub_ about data and pandas |
887 | | [Gregory Piatetsky](https://twitter.com/kdnuggets) | KDnuggets President, Analytics/Big Data/Data Mining/Data Science expert, KDD & SIGKDD co-founder, was Chief Scientist at 2 startups, part-time philosopher. |
888 | | [Hadley Wickham](https://twitter.com/hadleywickham) | Chief Scientist at RStudio, and an Adjunct Professor of Statistics at the University of Auckland, Stanford University, and Rice University. |
889 | | [Hakan Kardas](https://twitter.com/hakan_kardes) | Data Scientist |
890 | | [Hilary Mason](https://twitter.com/hmason) | Data Scientist in Residence at @accel. |
891 | | [Jeff Hammerbacher](https://twitter.com/hackingdata) | ReTweeting about data science |
892 | | [John Myles White](https://twitter.com/johnmyleswhite) | Scientist at Facebook and Julia developer. Author of Machine Learning for Hackers and Bandit Algorithms for Website Optimization. Tweets reflect my views only. |
893 | | [Juan Miguel Lavista](https://twitter.com/BDataScientist) | Principal Data Scientist @ Microsoft Data Science Team |
894 | | [Julia Evans](https://twitter.com/b0rk) | Hacker - Pandas - Data Analyze |
895 | | [Kenneth Cukier](https://twitter.com/kncukier) | The Economist's Data Editor and co-author of Big Data (http://www.big-data-book.com/). |
896 | | Kevin Davenport | Organizer of https://www.meetup.com/San-Diego-Data-Science-R-Users-Group/ |
897 | | [Kevin Markham](https://twitter.com/justmarkham) | Data science instructor, and founder of [Data School](https://www.dataschool.io/) |
898 | | [Kim Rees](https://twitter.com/krees) | Interactive data visualization and tools. Data flaneur. |
899 | | [Kirk Borne](https://twitter.com/KirkDBorne) | DataScientist, PhD Astrophysicist, Top #BigData Influencer. |
900 | | Linda Regber | Data story teller, visualizations. |
901 | | [Luis Rei](https://twitter.com/lmrei) | PhD Student. Programming, Mobile, Web. Artificial Intelligence, Intelligent Robotics Machine Learning, Data Mining, Natural Language Processing, Data Science. |
902 | | Mark Stevenson | Data Analytics Recruitment Specialist at Salt (@SaltJobs) Analytics - Insight - Big Data - Datascience |
903 | | [Matt Harrison](https://twitter.com/__mharrison__) | Opinions of full-stack Python guy, author, instructor, currently playing Data Scientist. Occasional fathering, husbanding, organic gardening. |
904 | | [Matthew Russell](https://twitter.com/ptwobrussell) | Mining the Social Web. |
905 | | [Mert Nuhoğlu](https://twitter.com/mertnuhoglu) | Data Scientist at BizQualify, Developer |
906 | | [Monica Rogati](https://twitter.com/mrogati) | Data @ Jawbone. Turned data into stories & products at LinkedIn. Text mining, applied machine learning, recommender systems. Ex-gamer, ex-machine coder; namer. |
907 | | [Noah Iliinsky](https://twitter.com/noahi) | Visualization & interaction designer. Practical cyclist. Author of vis books: https://www.oreilly.com/pub/au/4419 |
908 | | [Paul Miller](https://twitter.com/PaulMiller) | Cloud Computing/ Big Data/ Open Data Analyst & Consultant. Writer, Speaker & Moderator. Gigaom Research Analyst. |
909 | | [Peter Skomoroch](https://twitter.com/peteskomoroch) | Creating intelligent systems to automate tasks & improve decisions. Entrepreneur, ex Principal Data Scientist @LinkedIn. Machine Learning, ProductRei, Networks |
910 | | [Prash Chan](https://twitter.com/MDMGeek) | Solution Architect @ IBM, Master Data Management, Data Quality & Data Governance Blogger. Data Science, Hadoop, Big Data & Cloud. |
911 | | [Quora Data Science](https://twitter.com/q_datascience) | Quora's data science topic |
912 | | [R-Bloggers](https://twitter.com/Rbloggers) | Tweet blog posts from the R blogosphere, data science conferences and (!) open jobs for data scientists. |
913 | | [Rand Hindi](https://twitter.com/randhindi) | |
914 | | [Randy Olson](https://twitter.com/randal_olson) | Computer scientist researching artificial intelligence. Data tinkerer. Community leader for @DataIsBeautiful. #OpenScience advocate. |
915 | | [Recep Erol](https://twitter.com/EROLRecep) | Data Science geek @ UALR |
916 | | [Ryan Orban](https://twitter.com/ryanorban) | Data scientist, genetic origamist, hardware aficionado |
917 | | [Sean J. Taylor](https://twitter.com/seanjtaylor) | Social Scientist. Hacker. Facebook Data Science Team. Keywords: Experiments, Causal Inference, Statistics, Machine Learning, Economics. |
918 | | [Silvia K. Spiva](https://twitter.com/silviakspiva) | #DataScience at Cisco |
919 | | [Harsh B. Gupta](https://twitter.com/harshbg) | Data Scientist at BBVA Compass |
920 | | [Spencer Nelson](https://twitter.com/spenczar_n) | Data nerd |
921 | | [Talha Oz](https://twitter.com/tozCSS) | Enjoys ABM, SNA, DM, ML, NLP, HI, Python, Java. Top percentile kaggler/data scientist |
922 | | [Tasos Skarlatidis](https://twitter.com/anskarl) | Complex Event Processing, Big Data, Artificial Intelligence and Machine Learning. Passionate about programming and open-source. |
923 | | [Terry Timko](https://twitter.com/Terry_Timko) | InfoGov; Bigdata; Data as a Service; Data Science; Open, Social & Business Data Convergence |
924 | | [Tony Baer](https://twitter.com/TonyBaer) | IT analyst with Ovum covering Big Data & data management with some systems engineering thrown in. |
925 | | [Tony Ojeda](https://twitter.com/tonyojeda3) | Data Scientist , Author , Entrepreneur. Co-founder @DataCommunityDC. Founder @DistrictDataLab. #DataScience #BigData #DataDC |
926 | | [Vamshi Ambati](https://twitter.com/vambati) | Data Science @ PayPal. #NLP, #machinelearning; PhD, Carnegie Mellon alumni (Blog: https://allthingsds.wordpress.com ) |
927 | | [Wes McKinney](https://twitter.com/wesmckinn) | Pandas (Python Data Analysis library). |
928 | | [WileyEd](https://twitter.com/WileyEd) | Senior Manager - @Seagate Big Data Analytics @McKinsey Alum #BigData + #Analytics Evangelist #Hadoop, #Cloud, #Digital, & #R Enthusiast |
929 | | [WNYC Data News Team](https://twitter.com/datanews) | The data news crew at @WNYC. Practicing data-driven journalism, making it visual and showing our work. |
930 | | [Alexey Grigorev](https://twitter.com/Al_Grigor) | Data science author |
931 | | [İlker Arslan](https://twitter.com/ilkerarslan_35) | Data science author. Shares mostly about Julia programming |
932 |
933 | ### Telegram Channels
934 | **[`^ back to top ^`](#awesome-data-science)**
935 |
936 | - [Open Data Science](https://t.me/opendatascience) – First Telegram Data Science channel. Covering all technical and popular staff about anything related to Data Science: AI, Big Data, Machine Learning, Statistics, general Math and the applications of former.
937 | - [Loss function porn](https://t.me/loss_function_porn) — Beautiful posts on DS/ML theme with video or graphic visualization.
938 | - [Machinelearning](https://t.me/ai_machinelearning_big_data) – Daily ML news.
939 |
940 |
941 | ### Slack Communities
942 | [top](#awesome-data-science)
943 |
944 | - [DataTalks.Club](https://datatalks.club)
945 | - [Women Who Code - Data Science](https://www.womenwhocode.com/datascience)
946 |
947 | ### GitHub Groups
948 | - [Berkeley Institute for Data Science](https://github.com/BIDS)
949 |
950 | ### Data Science Competitions
951 |
952 | Some data mining competition platforms
953 |
954 | - [Kaggle](https://www.kaggle.com/)
955 | - [DrivenData](https://www.drivendata.org/)
956 | - [Analytics Vidhya](https://datahack.analyticsvidhya.com/)
957 | - [InnoCentive](https://www.innocentive.com/)
958 | - [Microprediction](https://www.microprediction.com/python-1)
959 |
960 | ## Fun
961 |
962 | - [Infographic](#infographics)
963 | - [Datasets](#datasets)
964 | - [Comics](#comics)
965 |
966 |
967 | ### Infographics
968 | **[`^ back to top ^`](#awesome-data-science)**
969 |
970 | | Preview | Description |
971 | | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
972 | | [
](https://i.imgur.com/0OoLaa5.png) | [Key differences of a data scientist vs. data engineer](https://searchbusinessanalytics.techtarget.com/feature/Key-differences-of-a-data-scientist-vs-data-engineer) |
973 | | [
](https://s3.amazonaws.com/assets.datacamp.com/blog_assets/DataScienceEightSteps_Full.png) | A visual guide to Becoming a Data Scientist in 8 Steps by [DataCamp](https://www.datacamp.com) [(img)](https://s3.amazonaws.com/assets.datacamp.com/blog_assets/DataScienceEightSteps_Full.png) |
974 | | [
](https://i.imgur.com/FxsL3b8.png) | Mindmap on required skills ([img](https://i.imgur.com/FxsL3b8.png)) |
975 | | [
](https://nirvacana.com/thoughts/wp-content/uploads/2013/07/RoadToDataScientist1.png) | Swami Chandrasekaran made a [Curriculum via Metro map](http://nirvacana.com/thoughts/2013/07/08/becoming-a-data-scientist/). |
976 | | [
](https://i.imgur.com/4ZBBvb0.png) | by [@kzawadz](https://twitter.com/kzawadz) via [twitter](https://twitter.com/MktngDistillery/status/538671811991715840) |
977 | | [
](https://i.imgur.com/xLY3XZn.jpg) | By [Data Science Central](https://www.datasciencecentral.com/) |
978 | | [
](https://i.imgur.com/0TydZ4M.png) | Data Science Wars: R vs Python |
979 | | [
](https://i.imgur.com/HnRwlce.png) | How to select statistical or machine learning techniques |
980 | | [
](https://scikit-learn.org/stable/_static/ml_map.png) | Choosing the Right Estimator |
981 | | [
](https://i.imgur.com/uEqMwZa.png) | The Data Science Industry: Who Does What |
982 | | [
](https://i.imgur.com/RsHqY84.png) | Data Science ~~Venn~~ Euler Diagram |
983 | | [
](https://www.springboard.com/blog/wp-content/uploads/2016/03/20160324_springboard_vennDiagram.png) | Different Data Science Skills and Roles from [this article](https://www.springboard.com/blog/data-science-career-paths-different-roles-industry/) by Springboard |
984 | | [
](https://data-literacy.geckoboard.com/poster/) | A simple and friendly way of teaching your non-data scientist/non-statistician colleagues [how to avoid mistakes with data](https://data-literacy.geckoboard.com/poster/). From Geckoboard's [Data Literacy Lessons](https://data-literacy.geckoboard.com/). |
985 |
986 | ### Datasets
987 | **[`^ back to top ^`](#awesome-data-science)**
988 |
989 | - [Academic Torrents](https://academictorrents.com/)
990 | - [ADS-B Exchange](https://www.adsbexchange.com/data-samples/) - Specific datasets for aircraft and Automatic Dependent Surveillance-Broadcast (ADS-B) sources.
991 | - [hadoopilluminated.com](https://hadoopilluminated.com/hadoop_illuminated/Public_Bigdata_Sets.html)
992 | - [data.gov](https://catalog.data.gov/dataset) - The home of the U.S. Government's open data
993 | - [United States Census Bureau](https://www.census.gov/)
994 | - [usgovxml.com](https://usgovxml.com/)
995 | - [enigma.com](https://enigma.com/) - Navigate the world of public data - Quickly search and analyze billions of public records published by governments, companies and organizations.
996 | - [datahub.io](https://datahub.io/)
997 | - [aws.amazon.com/datasets](https://aws.amazon.com/datasets/)
998 | - [datacite.org](https://datacite.org/)
999 | - [The official portal for European data](https://data.europa.eu/en)
1000 | - [NASDAQ:DATA](https://data.nasdaq.com/) - Nasdaq Data Link A premier source for financial, economic and alternative datasets.
1001 | - [figshare.com](https://figshare.com/)
1002 | - [GeoLite Legacy Downloadable Databases](https://dev.maxmind.com/geoip)
1003 | - [Quora's Big Datasets Answer](https://www.quora.com/Where-can-I-find-large-datasets-open-to-the-public)
1004 | - [Public Big Data Sets](https://hadoopilluminated.com/hadoop_illuminated/Public_Bigdata_Sets.html)
1005 | - [Kaggle Datasets](https://www.kaggle.com/datasets)
1006 | - [A Deep Catalog of Human Genetic Variation](https://www.internationalgenome.org/data)
1007 | - [A community-curated database of well-known people, places, and things](https://developers.google.com/freebase/)
1008 | - [Google Public Data](https://www.google.com/publicdata/directory)
1009 | - [World Bank Data](https://data.worldbank.org/)
1010 | - [NYC Taxi data](https://chriswhong.github.io/nyctaxi/)
1011 | - [Open Data Philly](https://www.opendataphilly.org/) Connecting people with data for Philadelphia
1012 | - [grouplens.org](https://grouplens.org/datasets/) Sample movie (with ratings), book and wiki datasets
1013 | - [UC Irvine Machine Learning Repository](https://archive.ics.uci.edu/ml/) - contains data sets good for machine learning
1014 | - [research-quality data sets](https://web.archive.org/web/20150320022752/https://bitly.com/bundles/hmason/1) by [Hilary Mason](https://web.archive.org/web/20150501033715/https://bitly.com/u/hmason/bundles)
1015 | - [National Centers for Environmental Information](https://www.ncei.noaa.gov/)
1016 | - [ClimateData.us](https://www.climatedata.us/) (related: [U.S. Climate Resilience Toolkit](https://toolkit.climate.gov/))
1017 | - [r/datasets](https://www.reddit.com/r/datasets/)
1018 | - [MapLight](https://www.maplight.org/data-series) - provides a variety of data free of charge for uses that are freely available to the general public. Click on a data set below to learn more
1019 | - [GHDx](https://ghdx.healthdata.org/) - Institute for Health Metrics and Evaluation - a catalog of health and demographic datasets from around the world and including IHME results
1020 | - [St. Louis Federal Reserve Economic Data - FRED](https://fred.stlouisfed.org/)
1021 | - [New Zealand Institute of Economic Research – Data1850](https://data1850.nz/)
1022 | - [Open Data Sources](https://github.com/datasciencemasters/data)
1023 | - [UNICEF Data](https://data.unicef.org/)
1024 | - [undata](https://data.un.org/)
1025 | - [NASA SocioEconomic Data and Applications Center - SEDAC](https://sedac.ciesin.columbia.edu/)
1026 | - [The GDELT Project](https://www.gdeltproject.org/)
1027 | - [Sweden, Statistics](https://www.scb.se/en/)
1028 | - [StackExchange Data Explorer](https://data.stackexchange.com) - an open source tool for running arbitrary queries against public data from the Stack Exchange network.
1029 | - [SocialGrep](https://socialgrep.com/datasets) - a collection of open Reddit datasets.
1030 | - [San Fransisco Government Open Data](https://datasf.org/opendata/)
1031 | - [IBM Asset Dataset](https://developer.ibm.com/exchanges/data/)
1032 | - [Open data Index](https://index.okfn.org/)
1033 | - [Public Git Archive](https://github.com/src-d/datasets/tree/master/PublicGitArchive)
1034 | - [GHTorrent](https://ghtorrent.org/)
1035 | - [Microsoft Research Open Data](https://msropendata.com/)
1036 | - [Open Government Data Platform India](https://data.gov.in/)
1037 | - [Google Dataset Search (beta)](https://datasetsearch.research.google.com/)
1038 | - [NAYN.CO Turkish News with categories](https://github.com/naynco/nayn.data)
1039 | - [Covid-19](https://github.com/datasets/covid-19)
1040 | - [Covid-19 Google](https://github.com/google-research/open-covid-19-data)
1041 | - [Enron Email Dataset](https://www.cs.cmu.edu/~./enron/)
1042 | - [5000 Images of Clothes](https://github.com/alexeygrigorev/clothing-dataset)
1043 | - [IBB Open Portal](https://data.ibb.gov.tr/en/)
1044 |
1045 | ### Comics
1046 | **[`^ back to top ^`](#awesome-data-science)**
1047 |
1048 | - [Comic compilation](https://medium.com/@nikhil_garg/a-compilation-of-comics-explaining-statistics-data-science-and-machine-learning-eeefbae91277)
1049 | - [Cartoons](https://www.kdnuggets.com/websites/cartoons.html)
1050 |
1051 | ## Other Awesome Lists
1052 |
1053 | - Other amazingly awesome lists can be found in the [awesome-awesomeness](https://github.com/bayandin/awesome-awesomeness)
1054 | - [Awesome Machine Learning](https://github.com/josephmisiti/awesome-machine-learning)
1055 | - [lists](https://github.com/jnv/lists)
1056 | - [awesome-dataviz](https://github.com/javierluraschi/awesome-dataviz)
1057 | - [awesome-python](https://github.com/vinta/awesome-python)
1058 | - [Data Science IPython Notebooks.](https://github.com/donnemartin/data-science-ipython-notebooks)
1059 | - [awesome-r](https://github.com/qinwf/awesome-R)
1060 | - [awesome-datasets](https://github.com/awesomedata/awesome-public-datasets)
1061 | - [awesome-Machine Learning & Deep Learning Tutorials](https://github.com/ujjwalkarn/Machine-Learning-Tutorials/blob/master/README.md)
1062 | - [Awesome Data Science Ideas](https://github.com/JosPolfliet/awesome-ai-usecases)
1063 | - [Machine Learning for Software Engineers](https://github.com/ZuzooVn/machine-learning-for-software-engineers)
1064 | - [Community Curated Data Science Resources](https://hackr.io/tutorials/learn-data-science)
1065 | - [Awesome Machine Learning On Source Code](https://github.com/src-d/awesome-machine-learning-on-source-code)
1066 | - [Awesome Community Detection](https://github.com/benedekrozemberczki/awesome-community-detection)
1067 | - [Awesome Graph Classification](https://github.com/benedekrozemberczki/awesome-graph-classification)
1068 | - [Awesome Decision Tree Papers](https://github.com/benedekrozemberczki/awesome-decision-tree-papers)
1069 | - [Awesome Fraud Detection Papers](https://github.com/benedekrozemberczki/awesome-fraud-detection-papers)
1070 | - [Awesome Gradient Boosting Papers](https://github.com/benedekrozemberczki/awesome-gradient-boosting-papers)
1071 | - [Awesome Computer Vision Models](https://github.com/nerox8664/awesome-computer-vision-models)
1072 | - [Awesome Monte Carlo Tree Search](https://github.com/benedekrozemberczki/awesome-monte-carlo-tree-search-papers)
1073 | - [Glossary of common statistics and ML terms](https://www.analyticsvidhya.com/glossary-of-common-statistics-and-machine-learning-terms/)
1074 | - [100 NLP Papers](https://github.com/mhagiwara/100-nlp-papers)
1075 | - [Awesome Game Datasets](https://github.com/leomaurodesenv/game-datasets#readme)
1076 | - [Data Science Interviews Questions](https://github.com/alexeygrigorev/data-science-interviews)
1077 | - [Awesome Explainable Graph Reasoning](https://github.com/AstraZeneca/awesome-explainable-graph-reasoning)
1078 | - [Top Data Science Interview Questions](https://www.interviewbit.com/data-science-interview-questions/)
1079 | - [Awesome Drug Synergy, Interaction and Polypharmacy Prediction](https://github.com/AstraZeneca/awesome-drug-pair-scoring)
1080 | - [Deep Learning Interview Questions](https://www.adaface.com/blog/deep-learning-interview-questions/)
1081 | - [Top Future Trends in Data Science in 2023](https://medium.com/the-modern-scientist/top-future-trends-in-data-science-in-2023-3e616c8998b8)
1082 |
1083 | ### Hobby
1084 | - [Awesome Music Production](https://github.com/ad-si/awesome-music-production)
1085 |
1086 |
1087 |
1088 |
1095 |
--------------------------------------------------------------------------------