Nizamuddin Siddiqui has Published 2307 Articles

How to display X-axis labels with dash in base R plot?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 08:25:38

316 Views

To display X-axis labels with dash in base R plot, we can use axis function and define the labels manually. For this purpose, we can first create the plot without X-axis labels by using the argument xaxt="n" and then use the axis function.Check out the below example to understand how ... Read More

How to find the groupwise cumulative mean in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 08:23:29

236 Views

To find the groupwise cumulative mean, we can use cummean function of dplyr package.For example, if we have a data frame called df that contains a categorical column say Group and a numerical column say Response then the groupwise cumulative mean can be found by using the command given below ... Read More

How to combine data frames stored in a list in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 08:22:12

7K+ Views

To combine data frames stored in a list in R, we can use full_join function of dplyr package inside Reduce function.For Example, if we have a list called LIST that contains some data frames then we can combine those data frames by using the below command −Reduce(full_join, LIST)Check out the ... Read More

How to create barplot for some top values in an R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 08:15:06

1K+ Views

To create barplot for some top values in an R data frame, we can subset the required top values inside the barplot function.For example, if we have a data frame called df that contains a categorical column say C and a numerical column for frequency defined as F then the ... Read More

Find the column name of least value in each row of an R dataframe.

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 08:13:04

729 Views

To find the column name that has the least value for each row in an R data frame, we can use colnames function along with apply function.For Example, if we have a data frame called df then we can find column name that has the least value for each row ... Read More

How to set the coefficient of one variable to 1 for logistic regression model in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 08:12:35

548 Views

To set the coefficient of one variable to 1 for logistic regression model, we can use offset function.For example, if we have a data frame called df that contains a binary column say y and three independent variables say x1, x2, and x3 and we want to create a logistic ... Read More

How to display Y-axis labels with more decimal places in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 08:07:14

1K+ Views

To display Y-axis labels with more decimal places, we would need to round the values of the vector or column for which we want to create the plot to the appropriate number of decimal places.After that axis function will be used for creating the graph. Before doing all this, the ... Read More

How to create pie chart using plotly in R?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 08:05:26

835 Views

To create pie chart using plotly, we first need to find the count data based on categories and then use the plot_ly function by mentioning chart type as "pie".To find the count data, we can use count function from dplyr package after that plot_ly function will be applied.Check out the ... Read More

Find the group wise large and small values in an R data frame.

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 08:01:46

165 Views

To find the groupwise large and small values in an R data frame, we can use mutate function of dplyr package, the grouping can be easily done with the help of group_by function.For Example, if we have a data frame called df that contains grouping column say Grp and a ... Read More

How to merge rows having same values in an R data frame?

Nizamuddin Siddiqui

Nizamuddin Siddiqui

Updated on 05-Nov-2021 08:00:06

3K+ Views

To merge rows having same values in an R data frame, we can use the aggregate function.For example, if we have a data frame called df that contains two categorical columns say C1 and C2 and one numerical column Num then we can merge the rows of df by summing ... Read More

Advertisements