Dealing with missing values in R

1 year ago

In R programming, the value 'NA' is used to represent a missing value. Say we try to read a csv…

Recode variables in R

1 year ago

In data analysis it is often needed to set new values to a variable based on one or several conditions,…

Working with date values in R

1 year ago

R has rich resources of functions dealing with date values in data analysis. In this post, we introduce and show…

How to generate random numbers from various statistical distributions using R

1 year ago

n this post, we show how to generate random numbers into vector and matrix in R programming, from various statistical…

Creating a random sequence using sample() in R

1 year ago

It is not uncommon to generate random sequences in R programming. sample() function provides the feasibility of generating such random…

Estimating simple linear regression model using lm() in R

1 year ago

Linear regression is widely used to model the relationship between response or dependent variable and explanatory or independent variables. The…

Using exponential distributions in Python

1 year ago

The exponential distribution is modeling the probability distribution of the random time until next event occur in a Poisson event…

Append, insert and remove elements of lists in Python

1 year ago

The elements of a list can be added or removed after it has been created. To add new elements at…

Working with Python classes and instances

1 year ago

Python uses class for object-oriented programming. A class represents the general behavior or information that the programmer or data analyst…

Calculating partial correlations with R

2 years ago

When we do data analysis, random variables in the dataset are usually mutually correlated. Sometimes, we may want to measure…