Nizamuddin Siddiqui has Published 2307 Articles

How to print the vector elements vertically in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 10:53:34

698 Views

By default, the vector elements are printed horizontally in R environment, suppose a vector x has five values then they will be printed as 1, 2, 3, 4, 5. And if we want to print them vertically then the output will be −1 2 3 4 5The printing of these ... Read More

How to plot the regression line starting from origin using ggplot2 in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 10:50:03

843 Views

The regression line starting from origin means that the intercept of the model is dropped from the regression model. To plot the regression line starting from origin, we can use the formula by subtracting 1 in geom_smooth function of ggplot2 package.Consider the below data frame −Example Live Demox

How to extract only factor columns name from an R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 10:45:54

1K+ Views

To extract only factor column names from an R data frame, we can use names function with Filter by selecting only factor columns using as.factor. For example, if we have a data frame called df that contains some factor columns then the extraction of names of these factor columns can ... Read More

How to display a line in segment of a plot using ggplot2 in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 10:39:34

263 Views

To display a line in segment of a plot, we can use geom_segment function of ggplot2 package where we need to pass the initial and the ending values for both the axes. For example, if we have data frame called df that contains x and y then a scatterplot with ... Read More

How to find the two factor interaction variables in an R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 10:36:44

186 Views

If we have a data frame called df that contains four columns say x, y, z, and a then the two factor interaction columns will be xy, xz, xa, yz, ya, za. To find how many two factor interaction variables can be created using data frame columns, we can make ... Read More

How to replace 0 in list of matrices to NA in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 10:29:55

212 Views

Sometimes missing values are being read as 0 which is not a correct way to represent them, therefore, we must convert the 0’s in the data to NA so that R can understand the difference between missing value and 0’s. For this replacement, we can use lapply function and apply ... Read More

How to save an xtable file locally using R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 10:25:13

519 Views

To save an xtable file locally, obviously we first need to create the xtable and then use the print function for saving the file. Therefore, we require xtable package loaded in R environment and the data set that we want to save as an xtable file. In the below example, ... Read More

How to sort matrix columns independently in increasing order in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 10:11:41

316 Views

To sort a matrix column independently in increasing order means that ordering each column of the data frame in increasing order, therefore, sorting of values in one column does not affect the sorting in other columns. This can be done with the help of apply function along with the sort ... Read More

How to remove Y-axis labels in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 09:16:32

12K+ Views

When we create a plot in R, the Y-axis labels are automatically generated and if we want to remove those labels, the plot function can help us. For this purpose, we need to set ylab argument of plot function to blank as ylab="" and yaxt="n" to remove the axis title. ... Read More

How to remove single quote from string column in an R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 06-Feb-2021 09:13:50

4K+ Views

Sometimes column values in an R data frame have single quote associated with them and to perform the analysis we need to remove that quote. Therefore, to remove single quote from string column, we can use gsub function by defining the single quote and replacing it with blank(not space) as ... Read More

Advertisements