data-science-from-scratch

code for Data Science From Scratch book (by joelgrus)

Data-science-from-scratch Alternatives

Similar projects and alternatives to data-science-from-scratch

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better data-science-from-scratch alternative or higher similarity.

data-science-from-scratch reviews and mentions

Posts with mentions or reviews of data-science-from-scratch. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-11.
  • Creating k-NN with C++ (from Scratch)
    6 projects | dev.to | 11 Jan 2024
    # This is python code from https://github.com/joelgrus/data-science-from-scratch/blob/master/scratch/machine_learning.py def split_data(data: List[X], prob: float) -> Tuple[List[X], List[X]]: """Split data into fractions [prob, 1 - prob]""" data = data[:] # Make a shallow copy random.shuffle(data) # because shuffle modifies the list. cut = int(len(data) * prob) # Use prob to find a cutoff return data[:cut], data[cut:] # and split the shuffled list there.
  • How do I get started with Data science ?
    1 project | /r/datascience | 26 Jan 2023
    One of my favorites is Data Science from Scratch, which also has great resources online to follow up on. If you're into DS but confused about how to transition or level up your career, join us at the Data-Centric AI Community, today we have a hands-on session about "Finding Data Science Jobs" with a career coach and DS consultant, it might be helpful!
  • Learning Data science.
    1 project | /r/datascience | 25 Jan 2023
    If you're not, then perhaps start there :) If you are, it is totally possible to learn a lot by yourself, especially with the number of courses and books publicly available. One of my favourites is Data Science from Scratch, which also has great resources online to follow up on.
  • Joel Guru : Learn Data Science from Scratch
    1 project | /r/learnpython | 4 Apr 2021
    i am using this textbook : "Data Science from Scratch" by Joel Gurus his github with the files that connect and pair with the textbook material : https://github.com/joelgrus/data-science-from-scratch
  • A note from our sponsor - SaaSHub
    www.saashub.com | 2 May 2024
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic data-science-from-scratch repo stats
4
8,334
0.0
6 months ago

joelgrus/data-science-from-scratch is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of data-science-from-scratch is Python.


Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com