Boxplots in SeabornHow do you create boxplots in Python’s seaborn? Why would you want to create boxplots in the first […] October 12, 2023 in Python tagged plot / outlier / boxplot / seaborn / matplotlib / whisker / box / Matplotlib by Mike
Measures of PositionMeasures of position let you determine the position of a value in relation to other values in a […] October 12, 2023 in Statistics tagged statistics / percentile / quartile / position / median / Statistics by Mike
Replace Values in PandasAre you working with a DataFrame in pandas? Do you need to change or update some values in […] October 12, 2023 in Python tagged change / replace / clean / where / set / update / condition by Mike
Count the Number of Rows with a ConditionSuppose you are working with a pandas DataFrame in Python. You are doing some EDA (exploratory data analysis) […] October 12, 2023 in Python tagged rows / shape / pandas / dataframe / format / count / string / where / condition / python by Mike
Create a Duration Column in PandasAre you working with a pandas dataset that has two datetime columns and you want to know the […] October 12, 2023 in Python tagged duration / pandas / difference / date / time by Mike
Multiple Linear Regression for PenguinsIn this post I will use Python to perform a multiple linear regression (MLR) analysis. The data will […] October 11, 2023 in Statistics tagged multiple / linear / regression / ols / penguins / Multiple Linear Regression by Mike
Simple Linear RegressionWhat is regression? A very common statistics question is whether or not one variable is associated with another […] October 11, 2023 in Statistics tagged regression / simple / linear / Linear Regression by Mike
Multiple Linear Regression IntroductionMultiple linear regression allows us to have many independent variables that are associated with one continuous dependent variable […] October 10, 2023 in Statistics tagged multiple / linear / regression / Multiple Linear Regression by Mike
Logistic Regression IntroductionWhat is logistic regression? It is part of the general statistics area of regression. Some other types of […] October 10, 2023 in Statistics tagged logistic / churn / introduction / predict / regression / categorical / Logistic Regression by Mike
Choosing a Statistical TestHere is an article over at Scribbr that explains how to choose a statistical test. The article is […] October 9, 2023 in Statistics tagged test / statistics / choose / stats by Mike
Analysis of Variance (ANOVA)In analyzing your data, do you need to examine the relationship between categorical and continuous variables? It’s critically […] October 9, 2023 in Statistics tagged analysis / variance / ANOVA by Mike
Statistical t TestA t test is a statistical test that is used to compare the means of two groups. It […] October 9, 2023 in Statistics tagged two / t / student / t-test / means by Mike