Sổ tay khoa học dữ liệu Python
Mar 31 2023
.
- IPython: Ngoài Python bình thường
- Giới thiệu về NumPy
- Thao tác dữ liệu với Pandas
- Trực quan hóa với Matplotlib
- Bắt đầu với Học máy
- Học từ dữ liệu
- hồi quy tuyến tính
- Naive Bayes
- k-Hàng xóm gần nhất
- Giới thiệu về Machine Learning với Scikit-Learn
- Học máy trong thực tế
- Đánh đổi sai lệch-phương sai
- Ước tính mật độ hạt nhân
- Phân tích thành phần chính
- học đa dạng
- phân cụm
- Cây quyết định và rừng ngẫu nhiên
- Tối ưu hóa dựa trên Gradient
- Phân cụm K-Means
- Chuyên sâu: Phân loại Naive Bayes
- Chuyên sâu: Hồi quy tuyến tính
- Chuyên sâu: Máy Vector hỗ trợ
- Chuyên sâu: Cây quyết định và rừng ngẫu nhiên
- Chuyên sâu: Phân tích thành phần chính
- Chuyên sâu: Học đa dạng
- Chuyên sâu: Phân cụm k-Means
- Chuyến đi vòng xoáy của Python
- Cơ bản về ngôn ngữ Python
- IPython: Ngoài Python bình thường
- NumPy
- Thông tin thêm về IPython System Shell
- Matplotlib
- khoa học viễn tưởng
- Scikit-Tìm hiểu
- Học máy với Scikit-Learn
- Tài nguyên học máy khác
- Học máy thực tế: Một ví dụ đơn giản
- Thư mục
import numpy as np
# create a 1D array
a = np.array([0, 1, 2, 3, 4])
print(a)
import pandas as pd
# create a Pandas DataFrame
data = {'name': ['Alice', 'Bob', 'Charlie', 'David'],
'age': [25, 32, 18, 47],
'gender': ['F', 'M', 'M', 'M']}
df = pd.DataFrame(data)
print(df)
# filter rows based on a condition
df_filtered = df[df['age'] > 30]
print(df_filtered)
# group data by a column and compute statistics
grouped_data = df.groupby('gender')['age'].mean()
print(grouped_data)
import matplotlib.pyplot as plt
import numpy as np
# create some data to plot
x = np.linspace(0, 10, 100)
y = np.sin(x)
# create a line plot
plt.plot(x, y)
plt.title('Sine Wave')
plt.xlabel('x')
plt.ylabel('y')
plt.show()
# create a scatter plot
x = np.random.randn(100)
y = np.random.randn(100)
plt.scatter(x, y)
plt.title('Random Data')
plt.xlabel('x')
plt.ylabel('y')
plt.show()
from sklearn.datasets import load_iris
from sklearn.model_selection import train_test_split
from sklearn.neighbors import KNeighborsClassifier
# load the iris dataset
iris = load_iris()
# split the data into training and testing sets
X_train, X_test, y_train, y_test = train_test_split(iris['data'], iris['target'], random_state=0)
# create a K-Nearest Neighbors classifier
knn = KNeighborsClassifier(n_neighbors=1)
# fit the classifier to the training data
knn.fit(X_train, y_train)
# predict the classes of the test data
y_pred = knn.predict(X_test)
# compute the accuracy of the classifier
accuracy = knn.score(X_test, y_test)
print('Accuracy:', accuracy)

![Dù sao thì một danh sách được liên kết là gì? [Phần 1]](https://post.nghiatu.com/assets/images/m/max/724/1*Xokk6XOjWyIGCBujkJsCzQ.jpeg)



































