Programming Articles - Page 897 of 3366

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

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

295 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

593 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

11K+ 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

421 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

359 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

Combine two columns by ignoring missing values if exists in one column in R data frame.

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

3K+ Views

To combine two columns by ignoring missing values if exists in one column in R data frame, we can use paste function and is.na function.For Example, if we have a data frame called df that contains two columns say C1 and C2 where C2 contains some missing values then we can use the below mentioned command to combine C1 and C2 by ignoring missing values in C2 −cbind(df,Combined=paste(df[,1],replace(df[,2],is.na(df[,2]),"")))Example 1Following snippet creates a sample data frame −x1

Find the common elements between two columns of an R dataframe.

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

5K+ Views

To find the common elements between two columns of an R data frame, we can use intersect function.For Example, if we have a data frame called df that contains two columns say X and Y then we can find the common elements between X and Y by using the below command −intersect(df$X,df$Y)Example 1Following snippet creates a sample data frame −x1

How to subset an R data frame by specifying columns that contains NA?

Nizamuddin Siddiqui
Updated on 08-Nov-2021 10:14:09

401 Views

To subset an R data frame by specifying columns that contains NA, we can follow the below steps −First of all, create a data frame with some columns containing NAs.Then, use is.na along with subset function to subset the data frame by specifying columns that contains NA.ExampleCreate the data frameLet’s create a data frame as shown below −x

Find the number of non-missing values in each group of an R data frame.

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

346 Views

To find the number of non-missing values in each group of an R data frame, we can convert the data frame to data.table object and then use the sum function with negation of is.na.For Example, if we have a data frame called df that contains a grouping column say Group and a numerical column with few NAs say Num then we can find the number of non-missing values in each Group by using the below given command −setDT(df)[,sum(!is.na(df)),by=.(Group)]Example 1Following snippet creates a sample data frame −Grp

Create stacked bar chart with percentages on Y-axis using ggplot2 in R.

Nizamuddin Siddiqui
Updated on 08-Nov-2021 09:59:33

1K+ Views

To create stacked bar chart with percentages on Y-axis using ggplot2 in R, we can use fill argument inside geom_bar and put the second categorical variable with position set to fill.For Example, if we have a data frame called with two categorical columns say C1 and C2 then we can create stacked bar chart with percentages on Y-axis using the below mentioned command −ggplot(df,aes(C1))+geom_bar(aes(fill=C2),position="fill")ExampleFollowing snippet creates a sample data frame −f1

Advertisements