Live data from Hacker News

An Introduction to Statistical Learning with Applications in Python

statlearning.com

11–20 of 87 posts

Re: An Introduction to Statistical Learning with Applications in Python

#11
ISL is the best intro-level textbook of classic ML methods. It‘s theory-oriented yet simple enough to appeal to a wide audience of students (with basic knowledge in stats, linear algebra, and coding).

Having the examples only in R was a pain when teaching with it while using Python. I hope they‘ll now turn this into a series of Jupyter notebooks and distribute it through Colab or similar.

Re: An Introduction to Statistical Learning with Applications in Python

#12

Off topic, but it's very interesting to observe the ratio of upvotes / comments. On any given chatGPT topic, there are hundreds of comments usually. Here, so far 100 upvotes, only 7 comments. The book looks great - and given the authors, it almost certainly is (I will buy it for sure). It makes me think though about the state of 'ML / AI / Data Science' - and the cynic part of me thinks that this upvotes / comments r…

I know about the book, I just think it's cool there's an actual Python version now so I upvote.

Re: An Introduction to Statistical Learning with Applications in Python

#15

Off topic, but it's very interesting to observe the ratio of upvotes / comments. On any given chatGPT topic, there are hundreds of comments usually. Here, so far 100 upvotes, only 7 comments. The book looks great - and given the authors, it almost certainly is (I will buy it for sure). It makes me think though about the state of 'ML / AI / Data Science' - and the cynic part of me thinks that this upvotes / comments r…

What you are saying is true.

This kind of books are key to getting started with Machine Learning/AI, and this particular book is a very good one. I started my ML journey with this book.

There is a lot of hype around AI and it is going to be like the dotcom bubble.

Unlike Crypto, AI has real uses right now and I am saying this not taking into account any LLM products. But there is also a lot of hype and wishful thinking, and this bubble is going to burst and hurt a lot of people. But that won't stop people making real money in the short term. Many hypers I know understand this well.

But AI is here to stay. And even after the bubble bursts, there will be real uses of AI all around us.

Re: An Introduction to Statistical Learning with Applications in Python

#16
Might consider, say,

Sidney Siegel, N. John Castellan, Jr. 'Nonparametric Statistics for the Behavioral Sciences, Second Edition', ISBN 0-07-057357-3, McGraw-Hill, New York, 1988.

So, "nonparametric" means make no assumptions about a probability distribution based on parameters. Or, call the material distribution-free.

E.g., get to see about resampling plans -- tiny assumptions, really simple, darned cleaver, quite generally useful, especially appropriate for computing. Might use resampling to get more information from the data from "A - B" tests.

Re: An Introduction to Statistical Learning with Applications in Python

#17

Off topic, but it's very interesting to observe the ratio of upvotes / comments. On any given chatGPT topic, there are hundreds of comments usually. Here, so far 100 upvotes, only 7 comments. The book looks great - and given the authors, it almost certainly is (I will buy it for sure). It makes me think though about the state of 'ML / AI / Data Science' - and the cynic part of me thinks that this upvotes / comments r…

Probably just needs a ChatGPT code interpreter plugin.

Re: An Introduction to Statistical Learning with Applications in Python

#18
post #16

Might consider, say, Sidney Siegel, N. John Castellan, Jr. 'Nonparametric Statistics for the Behavioral Sciences, Second Edition', ISBN 0-07-057357-3, McGraw-Hill, New York, 1988. So, "nonparametric" means make no assumptions about a probability distribution based on parameters . Or, call the material distribution-free . E.g., get to see about resampling plans -- tiny assumptions, really simple, darned cleaver, quite…

Huh? I have that book, and it's nothing like ISLR, at all. It's a good book, but ISLR covers topics such as gradient boosted trees, survival analysis, GLMs, etc. Nothing at all like the book you mentioned. If forced, you could say ISLR is more focused on prediction, not inference or hypothesis testing.

Re: An Introduction to Statistical Learning with Applications in Python

#19

Off topic, but it's very interesting to observe the ratio of upvotes / comments. On any given chatGPT topic, there are hundreds of comments usually. Here, so far 100 upvotes, only 7 comments. The book looks great - and given the authors, it almost certainly is (I will buy it for sure). It makes me think though about the state of 'ML / AI / Data Science' - and the cynic part of me thinks that this upvotes / comments r…

It’s a well-known machine learning book. I’ve read through it and done the exercises in R.

https://github.com/melling/ISLR

There’s an edX course from the authors:

https://www.edx.org/course/statistical-learning

Post reply on HN