Nizamuddin Siddiqui has Published 2307 Articles

How to find the number of columns where all row values are equal in data.table object in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 08-Nov-2021 12:05:34

306 Views

To find the number of columns where all row values are equal in data.table object in R, we can follow the below steps −First of all, create a data.table object.Then, use sum function along with length and apply function to find the number of columns where all row values are ... Read More

How to find the position of maximum of each numerical column if some columns are categorical in R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 08-Nov-2021 12:01:35

63 Views

To find the position of maximum of each numerical column if some columns are categorical in R data frame, we can follow the below steps −First of all, create a data frame.Then, use numcolwise function from plyr package to find the maximum of each numerical column if some columns are ... Read More

How to find the cosine of each value in columns if some columns are categorical in R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 08-Nov-2021 11:55:33

260 Views

To find the cosine of each value in columns if some columns are categorical in R data frame, we can follow the below steps −First of all, create a data frame.Then, use numcolwise function from plyr package to find the cosine of each value in columns if some columns are ... Read More

How to create a binary random variable in R with given probability?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 08-Nov-2021 11:49:52

3K+ Views

To create a binary random variable in R with given probability, we can use the rbinom function with sample size argument n, success size argument size, and probability argument prob. To understand, how it can be done check out the below examples.Example 1Create the vector using rbinom function with n ... Read More

How to find the column median if some columns are categorical in R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 08-Nov-2021 11:47:48

135 Views

To find the column median if some columns are categorical in R data frame, we can follow the below steps −First of all, create a data frame.Then, use numcolwise function from plyr package to find the column median if some columns are categorical.Example 1Create the data frameLet’s create a data ... Read More

Convert a single column matrix into a diagonal matrix in R.

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 08-Nov-2021 11:44:42

454 Views

A diagonal matrix is a type of square matrix that contains zero at non-diagonal elements starting from left-upper to right-bottom.To convert a single column matrix into a diagonal matrix in R, we can use diag function along with matrix function and use ncol argument where we can put the number ... Read More

How to create a replacement column with multiple conditions and NA in R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 08-Nov-2021 11:42:27

423 Views

To create a replacement column with multiple conditions and NA in R data frame, we can follow the below steps −First of all, create a data frame.Then, use nested ifelse function to create a replacement column with multiple conditions.ExampleCreate the data frameLet’s create a data frame as shown below −xRead More

How to find the column standard deviation if some columns are categorical in R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 08-Nov-2021 11:38:52

101 Views

To find the column standard deviation if some columns are categorical in R data frame, we can follow the below steps −First of all, create a data frame.Then, use numcolwise function from plyr package to find the column standard deviation if some columns are categorical.Example 1Create the data frameLet’s create ... Read More

How to convert a vector into a diagonal matrix in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 08-Nov-2021 11:33:44

3K+ Views

A diagonal matrix is a type of square matrix that contains zero at non-diagonal elements starting from left-upper to right-bottom. To convert a vector into a diagonal matrix in R, we can use diag function along with matrix function and use ncol argument where we can put the number of ... Read More

How to remove dollar sign in R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 08-Nov-2021 11:33:25

936 Views

To remove dollar sign in R data frame, we can follow the below steps −First of all, create a data frame.Then, use gsub function along with lapply function to remove dollar sign.ExampleCreate the data frameLet’s create a data frame as shown below −Product

Advertisements