Nizamuddin Siddiqui

Nizamuddin Siddiqui

1,958 Articles Published

Articles by Nizamuddin Siddiqui

Page 126 of 196

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

Nizamuddin Siddiqui
Nizamuddin Siddiqui
Updated on 08-Nov-2021 420 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

Read More

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

Nizamuddin Siddiqui
Nizamuddin Siddiqui
Updated on 08-Nov-2021 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

Read More

Subset groups that occur greater than equal to n times in R dataframe.

Nizamuddin Siddiqui
Nizamuddin Siddiqui
Updated on 08-Nov-2021 509 Views

To subset groups that occur less than n times in R data frame, we can use filter function of dplyr package.For Example, if we have a data frame called df that contains a grouping column say Group then we can subset groups that occur less than 4 times by using the below mentioned command −df%%group_by(Group)%%filter(n()=4)Example 1Following snippet creates a sample data frame −Grp

Read More

How to find the sum of rows of a column based on multiple columns in R data frame?

Nizamuddin Siddiqui
Nizamuddin Siddiqui
Updated on 08-Nov-2021 1K+ Views

To find the sum of rows of a column based on multiple columns in R data frame, we can follow the below steps −First of all, create a data frame.Then, use aggregate function to find the sum of rows of a column based on multiple columns.ExampleCreate the data frameLet’s create a data frame as shown below −Grp1

Read More

How to display infinity symbol in base R plot?

Nizamuddin Siddiqui
Nizamuddin Siddiqui
Updated on 08-Nov-2021 1K+ Views

To display infinity symbol in base R plot, we can use text function and expression function. Inside expression function we can put infinity word for the display of infinity. For Example, if we want to display infinity at position X=2 and Y=4 then we can use the below mentioned command −text(2, 4, expression(infinity))Example 1To display infinity symbol in base R plot, use the snippet given below −plot(1:10, type="n") text(5, 5, expression(infinity))OutputIf you execute the above given snippet, it generates the following Output −Example 2To display infinity symbol in base R plot, use the snippet given below −plot(1:10, type="n") text(5, 5, ...

Read More

R programming to subtract all values in a vector from all values in another vector.

Nizamuddin Siddiqui
Nizamuddin Siddiqui
Updated on 08-Nov-2021 4K+ Views

To subtract all values in a vector from all values in another vector in R, we can use sapply function with subtraction sign.For Example, if we have two vectors say X and Y and we want to subtract all values in Y from all values in X then we can use the command given below −sapply(X,"-",Y)Example 1Following snippet creates a sample data frame −x1

Read More

R programming to find the sum of corresponding elements in all matrix’s stored in a list.

Nizamuddin Siddiqui
Nizamuddin Siddiqui
Updated on 08-Nov-2021 359 Views

To find the sum of corresponding elements in all matrix’s stored in a list in R, we can use Reduce function with plus sign. For Example, if we have a list called LIST that contains multiple matrices and we want to find the sum of corresponding elements then we can use the command given below −Reduce("+",LIST)Check out the below Examples to understand how it works.Example 1To find the sum of corresponding elements in all matrix’s stored in a list in R, use the following snippet −List

Read More

How to find the sum of all array elements in R?

Nizamuddin Siddiqui
Nizamuddin Siddiqui
Updated on 08-Nov-2021 4K+ Views

To find the sum of all array elements in R, we can use Reduce function with plus sign. For Example, if we have an array called ARRAY and we want to find the sum of all values in this array then we can use the command Reduce("+",ARRAY).Check out the below Examples to understand how it works.Example 1To find the sum of all array elements in R use the snippet given below −Array1

Read More

Extract a data frame column values as a vector by matching a vector in R.

Nizamuddin Siddiqui
Nizamuddin Siddiqui
Updated on 08-Nov-2021 1K+ Views

To extract a data frame column values as a vector by matching a vector in R, we can use subsetting with %in% operator.For Example, if we have a data frame called df having a column say C and a vector V and we want to extract values in C if they match with V then we can use the command given below −df[df$C %in% V,"C"]Example 1Following snippet creates a sample data frame and vector −x1

Read More

How to change the name of single column using setNames in R?

Nizamuddin Siddiqui
Nizamuddin Siddiqui
Updated on 06-Nov-2021 622 Views

To change the name of single column using setNames, we would need to specify the column name that needs to be changed.For example, if we have a data frame called df that contains three columns say Var1, var2, and Var3 and we want to change var2 to Var2 then we can use the command as follows −setNames(df,replace(names(df),names(df)=="var2","Var2"))Example 1Following snippet creates a sample data frame −x

Read More
Showing 1251–1260 of 1,958 articles
« Prev 1 124 125 126 127 128 196 Next »
Advertisements