wilsonzhang746

How to install Anaconda and start programming with Python?

Python is among the most popular programming language for data science nowadays, and getting started with Python is quite easy.…

2 years ago

How to create factor variables in R programming

Categorical variables, including nominal and ordinal variables in R programming language are called factor variables. For example, gender(male/female) is nominal,…

2 years ago

Getting started working with R programming language

When R software and RStudio program have been installed on your computer, R working session can be simply started by…

2 years ago

Creating and indexing a list in R

list is a type of data structure in R programming language. Unlike other data structures, especially matrix and vector, in…

2 years ago

Violin plots with ggplot2 in R

Violin plot is quite similar as boxplot, in the sense that it shows the range of the data. And at…

2 years ago

Passing a List to Function in Python

When we perform data analysis using Python, it is often useful to pass a list in calling the function as…

2 years ago

Using t-distribution and t-test with R

A Student t-distributed random variable is modeling the ratio between a standard Normal random variate and square root of a…

2 years ago

Kernel density plots with ggplot2 in R

Kernel density function is a nonparametric method to find the drawing density curve of random samples, and it is often…

2 years ago

Using a function with a while loop in Python

A function in Python is a group of code statements wrapped together to perform specific tasks. After a function is…

2 years ago

Poisson distribution implementation in Python

Poisson distribution is a discrete distribution. It is frequently used to model the counts of event occurrence during a specified…

2 years ago