Transpose in PythonTo transpose is to rotate information from one row or column to another to change the data layout, […] February 12, 2024 in Python tagged rows / pandas / transpose / columns by Mike
Naive Bayes Python ExampleHere is an example of Naive Bayes. I created a project using Jupyter Notebook that I called Naive […] February 11, 2024 in Machine Learning tagged weather / Bayes / dummies / sklearn / Naive / classification / soccer / get by Mike
Confusion MatrixWhat is a confusion matrix? a confusion matrix is a graphic that shows you your models true and […] February 9, 2024 in Machine Learning tagged matrix / confusion / true / false / positives / negatives by Mike
Evaluate Supervised Categorical ModelsIn the forth of four stages of the PACE Framework of Google, lies the Evaluate stage. The first […] February 8, 2024 in Machine Learning tagged evaluate / harmonic / MEAN / model by Mike
Class Imbalance in a DatasetWhen a dataset has a predictor variable that contains more instances of one outcome than another, we have […] February 7, 2024 in Machine Learning tagged variable / class / feature / imbalance / predictor by Mike
K-Means AlgorithmK-means is an unsupervised partitioning algorithm. It’s used to organize unlabeled data into groups or clusters. What does […] February 5, 2024 in Machine Learning tagged k-means / unsupervised / cluster / MEAN / algorithm / partition / groups / means / k by Mike
Hyperparameter TuningA popular and widely used technique to improve model performance after creation is known as hyperparameter tuning. Hyperparameters […] February 5, 2024 in Machine Learning tagged tuning / hyperparameter / parameter by Mike
Decision Tree Python AlgorithmHere’s a brief summary of what we need to do in Python. I’m thinking of Jupyter Notebook. There’s […] February 5, 2024 in Machine Learning tagged algorithm / decision / tree / python / steps / Decision Trees by Mike
Simple Decision Tree in PythonWe have a series of posts that introduces the reader to decision trees. It begins with the post […] February 4, 2024 in Machine Learning tagged apples / grapes / decision / simple / tree / classifier / apple / grape / Decision Tree Apples Grapes by Mike
Plot Decision Tree InterpretationYou are modelling a decision tree in Python with the plot_tree function of sklearn.tree. How do you interpret […] February 4, 2024 in Machine Learning tagged classifier / apple / grape / decision / tree / plot / plt / sklearn / Decision Tree Apples Grapes by Mike
Create a Virtual Machine with VirtualBoxHow do you create your first virtual machine in VirtualBox? I’ve downloaded Here, I am using version 7. […] February 2, 2024 in Networking tagged machine / virtualization / oracle / virtual / VM / VirtualBox by Mike
The Iris Dataset in PythonAccording to Wikipedia, “The Iris flower data set or Fisher’s Iris data set is a multivariate data set […] February 1, 2024 in Python tagged data / dataset / correlation / iris / flower / heatmap by Mike