Found 2038 Articles for R Programming

How to convert alphabets to numbers in data.table object in R?

Nizamuddin Siddiqui
Updated on 08-Nov-2021 10:51:39

269 Views

To convert alphabets to numbers in data.table object in R, we can follow the below steps −First of all, create a data.table object.Then, use mutate_each function of dplyr package along with chartr function to convert alphabets to numbers.ExampleCreate the data.table objectLet’s create a data.table object as shown below −library(data.table) v1

How to find the percentage of values that lie within a range in R data frame column?

Nizamuddin Siddiqui
Updated on 08-Nov-2021 10:47:26

3K+ Views

To find the percentage of values that lie within a range in R data frame column, we can follow the below steps −First of all, create a data frame.Then, use sum function along with extreme values for range and length function to find the percentage of values that lie within that range.ExampleCreate the data frameLet’s create a data frame as shown below −Var

How to find the frequency of each value in an R data frame?

Nizamuddin Siddiqui
Updated on 08-Nov-2021 10:54:04

3K+ Views

To find the frequency of each value in an R data frame, we can use table function along with unlist function.For Example, if we have a data frame called df and we want to find the frequency of each value in df then we can use the below command −table(unlist(df))Example 1Following snippet creates a sample data frame −x1

How to find the mean of a column summarized by other column names and common values in those columns in data.table object in R?

Nizamuddin Siddiqui
Updated on 08-Nov-2021 10:45:00

55 Views

To find the mean of a column summarized by other column names and common values in those columns in data.table object in R, we can follow the below steps −First of all, create a data.table object.Then, melt the data.table object using melt function from reshape2 package.After that, use dcast function to find the mean of a column summarized by other column names and common values in those columns.ExampleCreate the data.table objectLet’s create a data.table object as shown below −library(data.table) ID

How to find the total by year column in an R data frame?

Nizamuddin Siddiqui
Updated on 08-Nov-2021 10:41:23

1K+ Views

To find the total by year column in an R data frame, we can use aggregate function with sum function.For Example, if we have a data frame called df that contains a year colmn say Year and a numerical column say Demand then we can find the total Demand by Year with the help of command given below −aggregate(df["Demand"],by=df["Year"],sum)Example 1Following snippet creates a sample data frame −Year

How to standardize selected columns in data.table object in R?

Nizamuddin Siddiqui
Updated on 08-Nov-2021 10:36:05

198 Views

To standardize selected columns in data.table object in R, we can follow the below steps −First of all, create a data.table object.Then, use scale function and cbind function with subsetting to standardize selected columns.ExampleCreate the data.table objectLet’s create a data.table object as shown below −library(data.table) var1

How to repeat column values in R matrix by values in another column?

Nizamuddin Siddiqui
Updated on 08-Nov-2021 10:29:30

387 Views

To repeat column values in R matrix by values in another column, we can follow the below steps −First of all, create a matrix.Then, use rep function along with cbind function to repeat column values in the matrix by values in another column.ExampleCreate the matrixLet’s create a matrix as shown below −x

How to save a matrix as CSV file using R?

Nizamuddin Siddiqui
Updated on 08-Nov-2021 10:35:08

9K+ Views

To save a matrix as CSV file using R, we can use write.matrix function of MASS package. For Example, if we have a matrix called M and we want to save it as CSV file then we can use the below mentioned command −write.matrix(M,file="Mat.csv")ExampleFollowing snippet creates a sample matrix −M

How to remove multiple columns from matrix in R by using their names?

Nizamuddin Siddiqui
Updated on 08-Nov-2021 10:24:26

340 Views

To remove multiple columns from matrix in R by using their names, we can follow the below steps −First of all, create a matrix.Then, add names to columns of the matrix.After that, subset the matrix by deselecting the desired columns with negation and single square brackets for subsetting.ExampleCreate the matrixLet’s create a matrix as shown below −M

How to find the index of values in matrix column in R if they occur once?

Nizamuddin Siddiqui
Updated on 08-Nov-2021 10:17:00

253 Views

To find the index of values in R matrix column if they occur once, we can follow the below steps −First of all, create a matrix.Then, use which function along with duplicated function and single square brackets for subsetting to find the index of values in a column if they occur once.Example 1Create the data frameLet’s create a data frame as shown below −M1

Advertisements