Please enable JavaScript.
Coggle requires JavaScript to display documents.
ML & DS - Coggle Diagram
ML & DS
-
What is Data Science?
-
-
Data Mining - the process of collecting data, storing it, cleaning it to make out optimum from the data collected.
Gather Data
Clean Data
Explore & Visualise
-
Pandas - is a fast, powerful, flexible and easy to use open-source data analysis and manipulation tool,
built on top of the Python programming language.
-
-
-
-
Matplotlib - Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python.
-
-
-
plt.scatter(X, y, alpha=0.3) #aplha is to make the dots tranparent
plt.figure(figsize=(10,6))
-
Scikit Learn - Simple and efficient tools for predictive data analysis.Built on NumPy, SciPy, and matplotlib
-
-
-
-
-
plt.plot(X, regression.predict(X), color='red', linewidth=4)
-
Python
-
-
-
-
Numpy - NumPy is a library for the Python programming language, adding support for large, multi-dimensional arrays and matrices, along with a large collection of high-level mathematical functions to operate on these arrays
-
np.linspace(start=-3, stop=3, num=100)
linspace gives the specified number of values from start to stop