Month: January 2019

How to determine Spearman’s correlation in Python

How to determine Spearman’s correlation in Python Spearman’s correlation, also known as rank correlation, is a statistical method that is used to measure the strength of a monotonic relationship between two variables. It ranges from -1 to 1, where -1 indicates a strong negative correlation, 0 indicates no correlation, and 1 indicates a strong positive …

How to determine Pearson’s correlation in Python

How to determine Pearson’s correlation in Python Pearson’s correlation is a statistical method that is used to measure the strength of a linear relationship between two variables. It ranges from -1 to 1, where -1 indicates a strong negative correlation, 0 indicates no correlation, and 1 indicates a strong positive correlation. In Python, we can …

How to generate time series data using Python and Seaborn package

How to generate time series data using Python and Seaborn package A time series is a series of data points collected at regular intervals of time. Time series data is commonly used in finance, economics, and other fields to track changes over time. There are various ways to generate time series data in Python, but …

IRIS Flower Classification using Logistic Regression Classifier

IRIS Flower Classification using Logistic Regression Classifier   IRIS flower classification is a common problem in machine learning. The IRIS dataset is a well-known dataset that contains information about different types of IRIS flowers, including their sepal length, sepal width, petal length, and petal width. The goal of IRIS flower classification is to use this …