Server Side Programming Articles - Page 1415 of 2650

How to create three-dimensional arrays of different sizes in R?

Nizamuddin Siddiqui
Updated on 08-Dec-2020 07:22:32

946 Views

A three-dimensional array can have matrices of different size and they are not necessarily to be square or rectangular. Also, all the elements in an array are of same data type. To create a three-dimensional array of different size we would need to use the proper number of rows and columns within the array function.Example Live DemoA1

How to find percentile rank for groups in an R data frame?

Nizamuddin Siddiqui
Updated on 08-Dec-2020 07:18:34

974 Views

The word percentile means the percentage that falls below or above the percentile value. For example, if we have a value that lies at 50th percentile then we would say 50 percent of the values lies below or above that value. The value 50 here is called the percentile rank. To find the percentile rank for groups in an R data frame, we can use mutate function of dplyr package.ExampleConsider the below data frame − Live DemoGroup

How to combine vectors of equal length into a list with corresponding elements representing a single element of the list in R?

Nizamuddin Siddiqui
Updated on 08-Dec-2020 07:14:15

426 Views

To combine three vectors into a list with corresponding elements representing a single element of the list we can use mapply function. For example, if we have three vectors x, y, and z each having number of elements equal to one-hundred then the list with corresponding elements can be created by using mapply(c,x,y,z,SIMPLIFY=FALSE).Example Live Demox1

How to perform tukey HSD in base R?

Nizamuddin Siddiqui
Updated on 08-Dec-2020 07:12:32

919 Views

First thing you must remember while moving on to post hoc analysis is the null hypothesis of the analysis of variance must be rejected, so that we can claim there exists a difference in the group means. Now, once we achieve that the tukey HSD can be performed simply by using TukeyHSD function in base R.ExampleConsider the below data frame − Live Demox1

What is the shortest way to round to the integer value in R?

Nizamuddin Siddiqui
Updated on 08-Dec-2020 07:09:59

143 Views

The shortest way to round to the integer value is using trunc function. The trunc function is used to return the largest integer that is smaller than or equal to the actual value, that means it rounds downs to the nearest integer. It works as a ceiling function for negative number and floor function for positive number.Example Live Demox1

How to create a plot of quadratic regression with fitted values against X in base R?

Nizamuddin Siddiqui
Updated on 08-Dec-2020 07:08:08

229 Views

The quadratic regression model can be plotted by using the plot function but we would need to find the fitted values using the model and this can be done with the help of fitted function. For example, if we have a quadratic model M and the data has an independent variable x then the model against x can be created by using plot(x,fitted(M)).Example Live Demox1

How to create a plot in base R with dates sequence on X-axis?

Nizamuddin Siddiqui
Updated on 08-Dec-2020 07:05:33

1K+ Views

If we have a vector that contains dates as sequence that needs to be plotted on the X-axis and another vector for the response then the plot can be simply created by using the plot function. In the plot function, we would need to pass the dates as the first argument and the response vector as the second argument. Check ou the examples below to understand how it works.Example Live Demox

How to create a plot with dashed regression line in base R?

Nizamuddin Siddiqui
Updated on 08-Dec-2020 07:02:21

909 Views

To create a regression line in base R, we use abline function after creating the scatterplot but if we want to have the line dash format then lty argument must also be used with value equals to 2 after defining the regression model inside abline. For example, if we have two columns x and y stored in a data frame called df then the plot with dashed regression line can be created by using −plot(y~x, data=df) abline(lm(df$y~df$x), lty=2)ExampleConsider the below data frame − Live Demo> x y df dfOutput      x       y 1 5.243553 4.969598 2 4.681088 ... Read More

How to create scatterplot with intercept equals to 1 using ggplot2 in R?

Nizamuddin Siddiqui
Updated on 08-Dec-2020 07:00:50

151 Views

To create a scatterplot with intercept equals to 1 using ggplot2, we can use geom_abline function but we need to pass the appropriate limits for the x axis and y axis values. For example, if we have two columns x and y in a data frame df and both have ranges starting from 0 to 5 then the scatterplot with intercept equals to 1 can be created as −ggplot(df,aes(x,y))+geom_point()+geom_abline(intercept=1)+lims(x=c(0,5),y=c(0,5))ExampleConsider the below data frame − Live Demox

How to multiply two matrices by elements in R?

Nizamuddin Siddiqui
Updated on 08-Dec-2020 06:58:46

5K+ Views

To multiply two matrices by elements in R, we would need to use one of the matrices as vector. For example, if we have two matrices defined by names M1 and M2 then the multiplication of these matrices by elements can be done by using M1*as.vector(M2). The main thing we need to remember while doing this kind of multiplication is that the number of rows in both the matrices are equal.Example Live DemoM1

Advertisements