Python Data Science-Handbuch
Mar 31 2023
.
- IPython: Jenseits von normalem Python
- Einführung in NumPy
- Datenmanipulation mit Pandas
- Visualisierung mit Matplotlib
- Erste Schritte mit maschinellem Lernen
- Aus Daten lernen
- Lineare Regression
- Naive Bayes
- k-nächste Nachbarn
- Einführung in maschinelles Lernen mit Scikit-Learn
- Maschinelles Lernen in der Praxis
- Der Bias-Varianz-Tradeoff
- Schätzung der Kerndichte
- Hauptkomponentenanalyse
- Vielfältiges Lernen
- Clustering
- Entscheidungsbäume und Random Forests
- Gradientenbasierte Optimierung
- K-Means-Clustering
- Ausführlich: Naive Bayes-Klassifikation
- Ausführlich: Lineare Regression
- Ausführlich: Unterstützung von Vektormaschinen
- Ausführlich: Entscheidungsbäume und Random Forests
- Ausführlich: Hauptkomponentenanalyse
- Ausführlich: Vielfältiges Lernen
- Ausführlich: k-Means-Clustering
- Eine Wirbelwind-Tour durch Python
- Grundlagen der Python-Sprache
- IPython: Jenseits von normalem Python
- NumPy
- Mehr zur IPython System Shell
- Matplotlib
- SciPy
- Scikit-Lernen
- Maschinelles Lernen mit Scikit-Learn
- Weitere Ressourcen für maschinelles Lernen
- Praktisches maschinelles Lernen: Ein einfaches Beispiel
- Literaturverzeichnis
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)

![Was ist überhaupt eine verknüpfte Liste? [Teil 1]](https://post.nghiatu.com/assets/images/m/max/724/1*Xokk6XOjWyIGCBujkJsCzQ.jpeg)



































