Compute Cumulative Cauchy Density in R Programming - pcauchy() Function Last Updated : 25 Jun, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report pcauchy() function in R Language is used to calculate the cumulative cauchy density. It also creates a density plot of cauchy cumulative distribution. Syntax: pcauchy(vec, scale) Parameters: vec: x-values for cauchy function scale: Scale for plotting Example 1: Python3 1== # R Program to compute cumulative cauchy density # Creating vector for x-values x <- seq(0, 2, by = 0.2) # Apply pcauchy() Function y <- pcauchy(x, scale = 5) y Output: [1] 0.5000000 0.5127256 0.5254107 0.5380154 0.5505015 0.5628330 0.5749763 [8] 0.5869014 0.5985815 0.6099938 0.6211189 Example 2: Python3 1== # R Program to compute cumulative cauchy density # Creating vector for x-values x <- seq(0, 2, by = 0.2) # Apply pcauchy() Function y <- pcauchy(x, scale = 5) # Plotting a graph plot(y) Output: Comment More infoAdvertise with us Next Article Compute Cumulative Chi Square Density in R Programming - pchisq() Function N nidhi_biet Follow Improve Article Tags : R Language R-Statistics Similar Reads Compute Cumulative Chi Square Density in R Programming - pchisq() Function pchisq() function in R Language is used to compute cumulative chi square density for a vector of elements. It also creates a density plot for chi square cumulative distribution. Syntax: pchisq(vec, df) Parameters: vec: Vector of x-values df: Degree of Freedom Example 1: Python3 1== # R program to co 1 min read Compute Cauchy Density in R Programming - dcauchy() Function dcauchy() function in R Language is used to calculate the cauchy density. It also creates a density plot of cauchy distribution. Syntax: dcauchy(vec, scale) Parameters: vec: x-values for cauchy function scale: Scale for plotting Example 1: Python3 1== # R Program to compute cauchy density # Creating 1 min read Compute Cumulative Logistic Density in R Programming - plogis() Function plogis() function in R Language is used to compute logistic cumulative density of the distribution. It also creates a plot of the density of the logistic cumulative distribution. Syntax: plogis(vec) Parameters: vec: Vector of x-values for density Example 1: Python3 1== # R program to calculate # cum 1 min read Compute the Cumulative Poisson Density in R Programming - ppois() Function ppois() function in R Language is used to compute the cumulative density function for Poisson distribution. Syntax: ppois(vec, lambda) Parameters: vec: Sequence of integer values lambda: Average number of events per interval Example 1: Python3 1== # R program to compute # Cumulative Poisson Density 1 min read Compute Chi Square Density in R Programming - dchisq() Function dchisq() function in R Language is used to compute chi square density for a vector of elements. It also creates a density plot for chi square distribution. Syntax: dchisq(vec, df) Parameters: vec: Vector of x-values df: Degree of Freedom Example 1: Python3 1== # R program to compute # Chi Square Den 1 min read Compute Cumulative Log Normal Probability Density in R Programming - plnorm() Function plnorm() function in R Language is used to compute the log normal value of the cumulative probability density function. It also creates a plot of the cumulative distribution of log normal density. Syntax: plnorm(vec) Parameters: vec: x-values for normal density Example 1: Python3 1== # R program to 1 min read Like