Note
Click here to download the full example code
Human Activity Recognition VisualizationΒΆ
Out:
Target looks like classification
Showing only top 10 of 561 continuous features
Linear Discriminant Analysis training set score: 0.984
# sphinx_gallery_thumbnail_number = 3
import matplotlib.pyplot as plt
from sklearn.datasets import fetch_openml
from dabl import plot
X, y = fetch_openml('har', as_frame=True, return_X_y=True)
plot(X, y)
plt.show()
Total running time of the script: ( 0 minutes 22.195 seconds)