Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gallo13/neuralnetworks-deeplearning-stats-classification

Descriptive Statistics, Classification and Analysis Using Python & Python Libraries (Assignment 1)
https://github.com/gallo13/neuralnetworks-deeplearning-stats-classification

analysis data datasets deep-learning jupyter-notebook matplotlib neural-networks numpy pandas plotting python seaborn

Last synced: about 2 months ago
JSON representation

Descriptive Statistics, Classification and Analysis Using Python & Python Libraries (Assignment 1)

Awesome Lists containing this project

README

        

# Neural Networks & Deep Learning: Classification
Descriptive Statistics, Classification and Analysis Using Python & Python Libraries

Used the Wine Quality Dataset

Part 1
Plotting using matplotlib only
Listing 1:
a) Load libraries
b) Load the dataset
Listing 2:
a) Print the shape of the dataset
b) Print the first few rows of the dataset
c) Print the statistical descriptions of the dataset
d) Print the class distribution in the dataset
Listing 3:
a) Univariate Plot
b) Visualize the dataset using histogram plots
c) Visualize the dataset using scatter plots
Listing 4:
a) Create validation set
b) Build models (Logistic Regression (LR), Linear Discriminant Analysis (LDA), k-Nearest
Neighbors (KNN), Classifications and Regressions Trees (CART), Gaussian Naive Bayes (NB),
Support Vector Machines (SVM) and select the best mdoel.
c) Compare algorithms
Listing 5:
- Make predictions on the validation dataset

Part 2:
Plotting using matplotlib only
Listing 6:
- Pairwise Pearson Correlation
- Skew for Each Attribute
- Univariate Density Plot
- Correlation Matrix Plot

Listing 7:
- Rescaling Data
- Standardize Data
- Normalize Data
- Binarize Data
- Analysis after each listing

Part 3
Complete any 8 calculations and plotting using seaborn packages which are not included into the previous calculations and plotting with matplotlib. Four of these should be related to PCA.
Listing 8:
- (need to continue)