Day: May 11, 2021

Beginners Guide to Python 3 – Python Operators

Python Operators Operators are used to perform operations on values and variables. The Python operators are classified into seven different categories: Arithmetic operators Assignment operators Comparison operators Logical operators Identity operators Membership operators Bitwise operators   Arithmetic Operators Arithmetic operators are used to perform simple mathematical operations on numeric values (except complex). Operator Meaning Example + Addition …

Beginners Guide to R – R Quantile-Quantile (QQ) Plot – Base Graph

R Quantile-Quantile (QQ) Plot – Base Graph Sometimes it’s important to know whether the data is normally distributed. A quantile-quantile plot (QQ plot) is a good first check. It shows the distribution of the data against the expected normal distribution. If the data is normally distributed, the points fall on the 45° reference line. If …