') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); GitHub - practice-proactive/data-science: :bar_chart: Path to a free self-taught education in Data Science! · GitHub
Skip to content

Latest commit

History

73 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Open Source Society logo

Open Source Society University

📊 Path to a free self-taught education in Data Science!

Open Source Society University - Data ScienceContribute with OSSU on Patreon

Contents

About

This is a solid path for those of you who want to complete a Data Science course on your own time, for free, with courses from the best universities in the World.

In our curriculum, we give preference to MOOC (Massive Open Online Course) style courses because these courses were created with our style of learning in mind.

Becoming an OSS student

To officially register for this course you must create a profile in our web app.

ps: Currently, the web app is for tracking the progress of the Computer Science path, but we are working to extend this functionality for all of our courses. Thanks for the comprehension.

"How can I do this?"

Just create an account on GitHub and log in with this account in our web app.

The intention of this app is to offer for our students a way to track their progress, and also the ability to show their progress through a public page for friends, family, employers, etc.

In the "My Progress" tab, you are able to edit the status of the courses that you are taking, and also add the link of your final project for each one.

Motivation & Preparation

Here are two interesting links that can make all the difference in your journey.

The first one is a motivational video that shows a guy that went through the "MIT Challenge", which consists of learning the entire 4-year MIT curriculum for Computer Science in 1 year.

The second link is a MOOC that will teach you learning techniques used by experts in art, music, literature, math, science, sports, and many other disciplines. These are fundamental abilities to succeed in our journey.

Are you ready to get started?

Curriculum


Linear Algebra

CoursesDurationEffort
Linear Algebra - Foundations to Frontiers15 weeks8 hours/week
Applications of Linear Algebra Part 15 weeks4 hours/week
Applications of Linear Algebra Part 24 weeks5 hours/week

Single Variable Calculus

CoursesDurationEffort
Calculus 1A: Differentiation13 weeks6-10 hours/week
Calculus 1B: Integration13 weeks5-10 hours/week
Calculus 1C: Coordinate Systems & Infinite Series13 weeks6-10 hours/week

Multivariable Calculus

CoursesDurationEffort
MIT OCW Multivariable Calculus15 weeks8 hours/week

Python

CoursesDurationEffort
Introduction to Computer Science and Programming Using Python9 weeks15 hours/week
Introduction to Computational Thinking and Data Science10 weeks15 hours/week
Introduction to Python for Data Science6 weeks2-4 hours/week
Programming with Python for Data Science6 weeks3-4 hours/week

Probability and Statistics

CoursesDurationEffort
Introduction to Probability16 weeks12 hours/week
Statistical Reasoning- weeks- hours/week
Introduction to Statistics: Descriptive Statistics5 weeks- hours/week
Introduction to Statistics: Probability5 weeks- hours/week
Introduction to Statistics: Inference5 weeks- hours/week

Introduction to Data Science

CoursesDurationEffort
Introduction to Data Science8 weeks10-12 hours/week
Data Science - CS109 from Harvard12 weeks5-6 hours/week
The Analytics Edge12 weeks10-15 hours/week

Machine Learning

CoursesDurationEffort
Learning From Data (Introductory Machine Learning)[caltech]10 weeks10-20 hours/week
Statistical Learning- weeks3 hours/week
Stanford's Machine Learning Course- weeks8-12 hours/week

Project

Complete Kaggle's Getting Started and Playground Competitions

Convex Optimization

CoursesDurationEffort
Convex Optimization9 weeks10 hours/week

Data Wrangling

CoursesDurationEffort
Data Wrangling with MongoDB8 weeks10 hours/week

Big Data

CoursesDurationEffort
Intro to Hadoop and MapReduce4 weeks6 hours/week
Deploying a Hadoop Cluster3 weeks6 hours/week

Database

CoursesDurationEffort
Stanford's Database course- weeks8-12 hours/week

Natural Language Processing

CoursesDurationEffort
Deep Learning for Natural Language Processing- weeks- hours/week

Deep Learning

CoursesDurationEffort
Deep Learning12 weeks8-12 hours/week

Capstone Project

  • Participate in Kaggle competition
  • List down other ideas

Specializations

After finishing the courses above, start your specializations on the topics that you have more interest. You can view a list of available specializations here.

keep learning

How to use this guide

Order of the classes

This guide was developed to be consumed in a linear approach. What does this mean? That you should complete one course at a time.

The courses are already in the order that you should complete them. Just start in the Linear Algebra section and after finishing the first course, start the next one.

If the course isn't open, do it anyway with the resources from the previous class.

Should I take all courses?

Yes! The intention is to conclude all the courses listed here!

Duration of the project

It may take longer to complete all of the classes compared to a regular Data Science course, but I can guarantee you that your reward will be proportional to your motivation/dedication!

You must focus on your habit, and forget about goals. Try to invest 1 ~ 2 hours every day studying this curriculum. If you do this, inevitably you'll finish this curriculum.

See more about "Commit to a process, not a goal" here.

Project Based

Here in OSS University, you do not need to take exams, because we are focused on real projects!

In order to show for everyone that you successfully finished a course, you should create a real project.

"What does it mean?"

After finish a course, you should think about a real world problem that you can solve using the acquired knowledge in the course. You don't need to create a big project, but you must create something to validate and consolidate your knowledge, and also to show to the world that you are capable to create something useful with the concepts that you learned.

The projects of all students will be listed in this file. Submit your project's information in that file after you conclude it.

You can create this project alone or with other students!

Project Suggestions

And you should also...

Be creative!

This is a crucial part of your journey through all those courses.

You need to have in mind that what you are able to create with the concepts that you learned will be your certificate and this is what really matters!

In order to show that you really learned those things, you need to be creative!

Here are some tips about how you can do that:

  • Articles: create blog posts to synthesize/summarize what you learned.
  • GitHub repository: keep your course's files organized in a GH repository, so in that way other students can use it to study with your annotations.

Cooperative work

We love cooperative work! Use our channels to communicate with other fellows to combine and create new projects!

Which programming languages should I use?

Python and R are heavily used in Data Science community and our courses teach you both, but...

The important thing for each course is to internalize the core concepts and to be able to use them with whatever tool (programming language) that you wish.

Content Policy

You must share only files that you are allowed to! Do NOT disrespect the code of conduct that you signed in the beginning of some courses.

Be creative in order to show your progress! 😄

Stay tuned

Watch this repository for futures improvements and general information.

Prerequisite

The only things that you need to know are how to use Git and GitHub. Here are some resources to learn about them:

Note: Just pick one of the courses below to learn the basics. You will learn a lot more once you get started!

Change Log

How to collaborate

You can open an issue and give us your suggestions as to how we can improve this guide, or what we can do to improve the learning experience.

You can also fork this project and send a pull request to fix any mistakes that you have found.

TODO: If you want to suggest a new resource, send a pull request adding such resource to the extras section.

The extras section is a place where all of us will be able to submit interesting additional articles, books, courses and specializations, keeping our curriculum as immutable and concise as possible.

Let's do it together! =)

Code of Conduct

OSSU's code of conduct.

Community

Subscribe to our newsletter.

Use our forum if you need some help.

You can also interact through GitHub issues.

We also have a chat room! Gitter

Add Open Source Society University to your Linkedin and Facebook profile!

ps: A forum is an ideal way to interact with other students as we do not lose important discussions, which usually occur in communication via chat apps. Please use our forum for important discussions.

Next Goals

Team

References

About

📊 Path to a free self-taught education in Data Science!

Resources

Stars

1 star

Watchers

5 watching

Forks

Releases

Packages

Contributors