Tag Archives: Data visualisation for beginners

Python Data Visualisation for Business Analyst – Scatter plot with linear regression line of best fit

(Python Data Visualisation Tutorials) Scatter plot with linear regression line of best fit In this data visualisation tutorial, you will learn how to do scatter plot with linear regression using seaborn package in Python. If you want to understand how two variables change with respect to each other, the line of best fit is the …

Python Data Visualisation for Business Analyst – Bubble plot in Python

(Python Data Visualisation Tutorials) How to do a Bubble Plot in Python? Sometimes you want to show a group of points within a boundary to emphasize their importance. In this example, you get the records from the dataframe that should be encircled and pass it to the encircle() described in the code below. Setup Run this once …

Python Data Visualisation for Business Analyst – Scatter Plot in Python

(Python Data Visualisation Tutorials) How to do a Scatter Plot in Python? Scatteplot is a classic and fundamental plot used to study the relationship between two variables. If you have multiple groups in your data you may want to visualise each group in a different color. In matplotlib, you can conveniently do this using plt.scatterplot(). Setup Run …

Machine Learning Classification in R using Support Vector Machine with IRIS Dataset

  Machine Learning Classification in R using Support Vector Machine (SVM) with IRIS Dataset is a popular technique used in Data Science to classify data into different categories. SVM is a supervised learning algorithm that can be used for both classification and regression tasks. The main idea behind SVM is to find a hyperplane that …

Machine Learning Classification in R | Quadratic Discriminant Analysis | Data Science for Beginners

    Machine learning is a method of teaching computers to learn from data, without being explicitly programmed. In this article, we will discuss how to use the QDA (Quadratic Discriminant Analysis) model for classification in R using the IRIS dataset from the UCI machine learning repository. The IRIS dataset is a well-known dataset in …