qt() function in R Language is used to return the inverse probability cumulative density of the Student t-distribution. Syntax: qt(x, df)Parameters: x: Random variable df: Degree of… Read More
Tag Archives: R Math-Function
pt() function in R Language is used to return the probability cumulative density of the Student t-distribution. Syntax: pt(x, df) Parameters: x: Random variable df:… Read More
dt() function in R Language is used to return the probability density analysis on the Student t-distribution with random variable x and degree of freedom… Read More
rt() function in R Language is used to create a random sequence of values from Student t-distribution. Syntax: rt(n, df, ncp) Parameters: n: Number of… Read More
IQR() function in R Language is used to calculate the interquartile range of a data set. Mathematically, IQR = Q3 – Q1 where, Q3 specifies… Read More
is.complex() function in R Language is used to check if the object passed to it as argument is of complex data type. Syntax: is.complex(x) Parameters:… Read More
is.numeric() function in R Language is used to check if the object passed to it as argument is of numeric type. Syntax: is.numeric(x) Parameters: x:… Read More
as.binary() function in R Language is used to convert an integer value to a binary value. Syntax: as.binary(x) Parameters: x: Integer value Example 1: #… Read More
is.integer() function in R Language is used to check if the object passed to it as argument is of integer type. Syntax: is.integer(x) Parameters: x:… Read More
intToBits() function in R Language is used to convert an integer into Bits i.e. 0s and 1s. The output is of length 32 times the… Read More
intToUtf8() function in R Language is used to convert an integer into UTF8 value. Syntax: intToUtf8(x, multiple) Parameters: x: Integer or integer vector multiple: Boolean… Read More
utf8ToInt() function in R Language is used to convert a UTF8 value to an integer value. Syntax: utf8ToInt(x, multiple) Parameters: x: Integer or integer vector… Read More
is.logical() function in R Language is used to check whether a value is logical or not. Syntax: is.logical(x) Parameters: x: Value to be checked Example… Read More
isTRUE() function in R Language is used to check whether a value or a logical expression is true or not. Syntax: isTRUE(x) Parameters: x: logical… Read More
as.integer() function in R Language is used to convert a character object to integer object. Syntax: as.integer(x) Parameters: x: Character Object Example 1: # R… Read More