zero-to-mastery-ml icon indicating copy to clipboard operation
zero-to-mastery-ml copied to clipboard

All course materials for the Zero to Mastery Machine Learning and Data Science course.

Results 39 zero-to-mastery-ml issues
Sort by recently updated
recently updated
newest added

While converting Price column into Int, cents are appended and get converted into whole integer. $4000.00 -> 400000 After the suggested change, $4000.00 -> 4000

Some students are getting different results when running different models in Scikit-Learn. This is because of different version upgrades (e.g. Scikit-Learn 0.23.0 -> 1.0.0). Find the videos/code that is showing...

What I fixed * Add code to remove extra zeros from the price column. * Unordered code running time

hi, I get this error while trying to install Jupyter through terminal in macOS. how can I fix it? thanks

![error1](https://github.com/mrdbourke/zero-to-mastery-ml/assets/141525226/17dee41d-eaa2-41f0-9d9a-788f41399a0d) ![error2](https://github.com/mrdbourke/zero-to-mastery-ml/assets/141525226/6d96d201-4d9a-4db6-833d-061882d7882c) Instead of getting objects in an order I am getting bound method exception. The output is not as shown in the course. Please solve this and let me...

Fixed a typo in the 'end-to-end-heart-disease-classification.ipynb' notebook.

In[24] This does not work anymore car_sales.groupby(["Make"]).mean() The mean now needs a condition in order for it to work car_sales.groupby(["Make"]).mean(numeric_only=True)