Programming Articles - Page 1144 of 3363

How to find the proportion using normal distribution in R?

Nizamuddin Siddiqui
Updated on 13-Aug-2021 10:50:26

7K+ Views

To find the proportion using normal distribution in R, we can use pnorm function where we can provide the mean and standard deviation of population along with sample, also the tail position can be set by using lower.tail argument to TRUE or FALSE. Check out the below examples to understand how it can be done.Example 1Finding the proportion of values above 55 when sample mean is 50 and standard deviation is 8 − Live Demopnorm(55, mean=50, sd=8, lower.tail=FALSE)Output[1] 0.2659855Example 2Finding the proportion of values above 60 when sample mean is 50 and standard deviation is 8 − Live Demopnorm(60, mean=50, sd=8, lower.tail=FALSE)Output[1] ... Read More

How to find the frequency of continuously repeated string values in an R data frame column?

Nizamuddin Siddiqui
Updated on 13-Aug-2021 10:49:08

233 Views

To find the frequency of continuously repeated string values in an R data frame column, we can follow the below steps −First of all, create a data frame with a string column.Then, use sequence function and rleid function after converting the data frame into data.table object to find the frequency of continuously repeated string values in data frame column.Create the data frameLet's create a data frame as shown below − Live Demox

How to find the row and column index for upper triangular matrix elements in R?

Nizamuddin Siddiqui
Updated on 13-Aug-2021 10:47:45

632 Views

To find the row and column index for upper triangular matrix elements in R, we can follow the below steps −First of all, create a matrix.Then, use which function with upper.tri function to find the row and column index for upper triangular matrix elements.After, that attach the values corresponding to each index using cbind function.Create the matrixLet’s create a matrix as shown below − Live DemoM

How to divide the row values by row mean in R matrix?

Nizamuddin Siddiqui
Updated on 13-Aug-2021 10:45:53

337 Views

To divide matrix row values by row mean in R, we can follow the below steps −First of all, create a matrix.Then, use apply function to divide the matrix row values by row mean.Create the matrixLet’s create a matrix as shown below − Live DemoM

How to combine multiple R data frames stored in multiple lists based on a common column?

Nizamuddin Siddiqui
Updated on 13-Aug-2021 10:44:45

515 Views

To combine multiple R data frames stored in multiple lists based on a common column, we can follow the below steps −First of all, create two lists of data frames.Then, use map2_df function from purrr package and inner_join function from dplyr package to combine the data frames stored in lists based on a common column.Create the two lists of data framesLet's create a data frames as shown below − Live Demodf1

How to create plotly bar chart with values on top of bars in R?

Nizamuddin Siddiqui
Updated on 13-Aug-2021 10:42:02

1K+ Views

To create plotly bar chart with values on top of bars in R, we can follow the below steps −First of all, create two vectors one having categories and one counts and create the bar chart using plotly.Then, create the same bar chart with add_text function of plotly package.Create the vectors and plotly bar chartUsing c function to create the vectors and plotly function with layout function to create the bar chart with axes titles −x

How to find the sum of numbers stored in character vector separated with a special character in R?

Nizamuddin Siddiqui
Updated on 13-Aug-2021 10:38:59

468 Views

To find the sum of numbers stored in character vector separated with a special character in R, we can follow the below steps −First of all, create a vector having numbers stored in character vector separated with a special character.Then, use sapply and strsplit function to find the sum of numbers.Example1Create a vector with numbers stored in character vector separated with hyphen − Live Demo> x1 x1On executing, the above script generates the below output(this output will vary on your system due to randomization) − [1] "11-2-15-19-10"   "11-2-15-19-10"    "13-12-75-29-18"  "15-25-52-91-10"  [5] "15-25-52-91-10"  "17-27-55-91-100"  "13-12-75-29-18"  "15-25-52-91-10"  [9] "13-12-75-29-18"  "10-4-5-19-10"     ... Read More

How to divide the row values by row mean in R data frame?

Nizamuddin Siddiqui
Updated on 13-Aug-2021 10:36:41

1K+ Views

To divide the row values by row mean in R data frame, we can follow the below steps −First of all, create a data frame.Then, use apply function to divide the data frame row values by row mean.Create the data frameLet's create a data frame as shown below − Live Demo> x y df dfOn executing, the above script generates the below output(this output will vary on your system due to randomization) −x y 1 42 23 2 2 37 3 6 42 4 34 28 5 50 19 6 41 46 7 35 38 8 33 7 9 32 9 ... Read More

How to create a horizontal line in ggplot2 graph with larger width in R?

Nizamuddin Siddiqui
Updated on 13-Aug-2021 10:34:47

1K+ Views

To create a horizontal line in ggplot2 graph with larger width in R, we can follow the below steps −First of all, create a data frame.Then, create a plot using ggplot2.After that, create the same plot with geom_hline function having horizontal line defined with yintercept and its width defined with size argumentCreate the data frameLet's create a data frame as shown below − Live Demo> x y df dfOn executing, the above script generates the below output(this output will vary on your system due to randomization) −    x y 1   1 43 2  21 17 3  36 9 4 ... Read More

How to create a dashed horizontal line in a ggplot2 graph in R?

Nizamuddin Siddiqui
Updated on 13-Aug-2021 10:32:59

10K+ Views

To create a dashed horizontal line in a ggplot2 graph in R, we can follow the below steps −First of all, create a data frame.Then, create a plot using ggplot2.After that, create the same plot with geom_hline function having horizontal line defined with y intercept and its type defined with line type argument.Create the data frameLet's create a data frame as shown below − Live Demo> x y df dfOn executing, the above script generates the below output(this output will vary on your system due to randomization) −         x       y 1 -0.2622735 0.050784727 2 -0.9453493 ... Read More

Advertisements