Round Exponential Numbers in R

Nizamuddin Siddiqui
Updated on 05-Feb-2021 09:56:22

1K+ Views

The exponential numbers are also called scientific numbers and these numbers have exponent representation by the letter e. For example, a number 12340000 can be represented as 1.234e + 107. We can round this to 1.2e + 107 and in R it can be done with the help of singif function.Example1 Live Demox1

Create a Vector with All Dates in a Particular Year in R

Nizamuddin Siddiqui
Updated on 05-Feb-2021 09:33:50

1K+ Views

We know that some years are leap years and some are normal years. The leap years have 366 days and the normal years have 365 days. To create a vector with all dates in a particular year we can use first date and the last date of the year by reading them with as.Date and creating a sequence with seq function. Check out the below examples to understand how it is done.Example1Creating a vector with dates in year 2020 − Live Demoseq(as.Date("2020-01-01"), as.Date("2020-12-31"), by="1 day")Output[1] "2020−01−01" "2020−01−02" "2020−01−03" "2020−01−04" "2020−01−05" [6] "2020−01−06" "2020−01−07" "2020−01−08" "2020−01−09" "2020−01−10" [11] "2020−01−11" "2020−01−12" "2020−01−13" "2020−01−14" ... Read More

Change Color of X-Axis Label Using ggplot2 in R

Nizamuddin Siddiqui
Updated on 05-Feb-2021 09:05:04

8K+ Views

The default color of labels is black but we might want to change that color to something else so that we can get attention of the viewer to the labels if it is needed. To change the color of X-axis label using ggplot2, we can use theme function that has axis.title.x argument which can be used for changing the color of the label values.ExampleConsider the below data frame − Live Demox

Extract Column Names Without Missing Values in R Data Frame

Nizamuddin Siddiqui
Updated on 05-Feb-2021 08:59:48

450 Views

The extraction of column names that do not have missing values can be done with the help of colnames function along with the complete.cases function. The complete.cases function will extract the columns that do not have missing values then colnames will extract those column names only.Example1Consider the below data frame − Live Demox1

Convert Dot to Comma for Numerical Columns in R Data Frame

Nizamuddin Siddiqui
Updated on 05-Feb-2021 08:55:26

3K+ Views

Most European countries use a comma in place of a decimal. Therefore, if we have a data set that contains dot as a decimal market and we need to use that four such European countries or if dot is recorded in place of comma then we can replace the dot with comma using format function as shown in the below examples.Example1 Live DemoConsider the below data frame −x1

Change Background Color of Legend in Base R Plot

Nizamuddin Siddiqui
Updated on 05-Feb-2021 08:52:12

3K+ Views

To create the legend for a plot in base R, we can use legend function and if the background color of the legends needs to be changed from white to any other then bg argument in legend function will be used. For example, to change the background color to red then we can use bg="red".Example1 Live Demoplot(1:10) legend("right",legend="point chart",bg="blue")OutputExample2 Live Demoplot(1:10) legend("right",legend="point chart",bg="light green")OutputExample3 Live Demoplot(1:10) legend("left",legend="point chart",bg="light grey")Output

Increase Width of Median Line in Boxplot Using ggplot2 in R

Nizamuddin Siddiqui
Updated on 05-Feb-2021 08:48:53

1K+ Views

The default width of the median line is wider than the rest of the lines that represent minimum, first quartile, third quartile or maximum but we can make it a little wider to make it more appealing. This can be done with the help of fatten argument inside geom_boxplot function, the default value of fatten is 2.Example Live DemoConsider the below data frame −x

Change Color of Points in Scatterplot using ggplot2 in R

Nizamuddin Siddiqui
Updated on 05-Feb-2021 08:45:38

20K+ Views

To color the points in a scatterplot using ggplot2, we can use colour argument inside geom_point with aes. The color can be passed in multiple ways, one such way is to name the particular color and the other way is to giving a range or using a variable. If range or a variable will be used then the color of the points will be in different shades.Example Live DemoConsider the below data frame −x

Find Unique Combinations of String Vector Elements in R

Nizamuddin Siddiqui
Updated on 05-Feb-2021 08:41:55

1K+ Views

A unique combination of vector elements can be found by using combn function with unique function and size argument will help us to identify the size of each of combination. For example, if we have a vector containing string values defined as x then the unique combinations of vector elements of size 2 can be created by using combn(unique(x),2).Example1 Live Demox1

Change Font Size of Main Title in Boxplot Using Base R

Nizamuddin Siddiqui
Updated on 05-Feb-2021 08:34:42

6K+ Views

The font size of the main title of boxplot can be changed by defining the font size value using par(cex.main=”size”), here size value can be changed based on our requirement. This needs to be done before creating the boxplot, otherwise, there will be no effect on the size of the main title.Example Live Demox

Advertisements