Found 26504 Articles for Server Side Programming

How to highlight outliers in a boxplot in R?

Nizamuddin Siddiqui
Updated on 10-Nov-2021 13:18:52

676 Views

To highlight outliers in a boxplot, we can create the boxplot with the help of Boxplot function of car package by defining the id.method.For example, if we have a vector called V then the boxplot of V with highlighted outliers can be created by using the below given command −Boxplot(~V,id.method="y")Example 1To highlight outliers in a boxplot, use the command given below −library(car) x

How to create an exponential distribution plot in R?

Nizamuddin Siddiqui
Updated on 10-Nov-2021 13:15:24

836 Views

To create an exponential distribution plot, we can use curve function.For example, if we want to create a exponential distribution plot for 100 values with rate parameter equal to ½ then we can use the command given below:curve(dexp(x, rate=1/2), xlim=c(1, 50))Check out the below examples to understand how it works.Example 1To create an exponential distribution plot, use the command given below −curve(dexp(x, rate=1/4), xlim=c(1, 50)) OutputIf you execute all the above given snippets as a single program, it generates the following output: −Example 2To create an exponential distribution plot, use the command given below −curve(dexp(x, rate=1/4), xlim=c(1, 20))OutputIf you execute ... Read More

How to check if a string contains only one type of character in R?

Nizamuddin Siddiqui
Updated on 10-Nov-2021 13:13:27

452 Views

If a string contains more than one character then all of them could be same or different. If we want to check if a string contains only one type of character, then stri_count_fixed function of stringi package will be used with nchar function.Check out the below given examples to understand how it can be done.Example 1Following snippet creates a sample data frame −Countries

How to split a vector into smaller vectors of consecutive values in R?

Nizamuddin Siddiqui
Updated on 10-Nov-2021 13:09:00

797 Views

To split a vector into smaller vectors of consecutive values, we can use split function with cumsum function.For example, if we have a vector called X that contains some consecutive values then we split X into smaller vectors of consecutive values by using the command given below −split(x,cumsum(c(1,diff(x)!=1)))Example 1Following snippet creates a vector −x1

How to find the mean based on single group value in an R data frame?

Nizamuddin Siddiqui
Updated on 10-Nov-2021 13:07:53

955 Views

To find the mean based on single group value in an R data frame, we can use mean function with subsetting through single square brackets.For example, if we have a data frame called df that contains a categorical column say C having three groups Low, Medium, High and a numerical column say Num then mean of Num for Medium group can be found by using the command given below −mean(df$C[df$Num=="Medium"])Example 1Following snippet creates a sample data frame −Group

How to fill a data.table row with missing values in R?

Nizamuddin Siddiqui
Updated on 10-Nov-2021 13:01:30

501 Views

Instead of filling missing values, we sometimes need to replace the data with missing values. This might be required in situations when missing values are coded with a number or the actual values are not useful or sensible for the data study. Also, we might want to replace the values with something else in the future.Check out the below given examples to understand how we can fill data.table row with missing values.Example 1Following snippet creates a data.table object −library(data.table) x1

How to create a wide vertical line using ggplot2 with different color in R?

Nizamuddin Siddiqui
Updated on 10-Nov-2021 12:56:18

4K+ Views

To create a vertical line using ggplot2, we can use geom_vline function of ggplot2 package and if we want to have a wide vertical line with different color then lwd and colour argument will be used. The lwd argument will increase the width of the line and obviously colour argument will change the color.Check out the below given example to understand how it works.ExampleFollowing snippet creates a sample data frame −x

How to create a dotted vertical line using ggplot2 in R?

Nizamuddin Siddiqui
Updated on 10-Nov-2021 12:54:26

8K+ Views

To create a vertical line using ggplot2, we can use geom_vline function of ggplot2 package and if we want to have a dotted vertical line then linetype will be set to 3 inside the same function. To draw the line, we will have to provide xintercept because the line will start on X-axis.Check out the below example to understand how it works.ExampleFollowing snippet creates a sample data frame −x

How to subset matrix row values based on different columns?

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

127 Views

Suppose we have a matrix called M that contains three columns and we want to subset row values of M but from different columns that means the subset will not have values only from a single column.Hence, before creating the subset we first need to find the column numbers that can be used for the creation of subset and this can be done with the help of sample function if column numbers are not known. After that we can use cbind function with single square brackets for subsetting.Check out the Examples given below to understand how it can be done.Example ... Read More

How to find the row products for each row in an R matrix?

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

183 Views

To find the row products for each row in an R matrix, we can use rowProds function of matrixStats package.For Example, if we have a matrix called MATRIX then we can find the row products for each row in MATRIX by using the command given below −rowProds(MATRIX)Example 1Following snippet creates a sample matrix −M1

Advertisements