sample() function in R Language creates random sample based on the parameters provided in the function call. It takes either a vector or a positive… Read More
Tag Archives: R Statistics-Function
Hypergeometric Distribution in R Language is defined as a method that is used to calculate probabilities when sampling without replacement is to be done in… Read More
fivenum() function in R Language is used to return Tukey’s five-number summary of input data i.e., minimum value, lower-hinge value, median value, upper-hinge value and… Read More
In R programming, aggregate() function is used to compute the summary statistics of the split data. It takes the data frame or time series analysis… Read More
Compute the Value of Quantile Function over Uniform Distribution in R Programming – qunif() Function
In R programming, qunif() function gives the value of quantile function over Uniform Distribution. Syntax: qunif(p, min, max, lower.tail = TRUE, log.p = FALSE) Parameters:… Read More
In R programming, punif() function is used to compute the value of Cumulative Distribution Function(CDF). Syntax: punif(q, min = 0, max = 1, lower.tail =… Read More
In R programming, spline() and splinefun() function is used to create a list of points obtained by interpolation. It performs cubic spline interpolation of given… Read More
The Gamma distribution in R Language is defined as a two-parameter family of continuous probability distributions which is used in exponential distribution, Erlang distribution, and… Read More
The exponential distribution in R Language is the probability distribution of the time between events in a Poisson point process, i.e., a process in which… Read More
qgeom() Function in R Language is used to plot a graph for quantile function of Geometric Distribution. Syntax: qgeom(x, prob) Parameters: x: x-values of qgeom()… Read More
dunif() function in R Language is used to provide the density of the distribution function. Syntax: dunif(x, min = 0, max = 1, log =… Read More
asp is a parameter of the plot() function in R Language is used to set aspect ratio of plots (Scatterplot and Barplot). Aspect ratio is… Read More
dgeom() function in R Programming is used to plot a geometric distribution graph. Syntax: dgeom(x, prob) Parameters: prob: prob of the geometric distribution x: x… Read More
qwilcox() function in R Language is used to compute the value of Quantile Function(QF) for Wilcoxonrank Sum Statistic Distribution over a sequence of Numeric Values.… Read More
rwilcox() function in R Language is used to compute random density for Wilcoxon Rank Sum Statistic Distribution over a sequence of random Numeric values. Syntax:… Read More