plotFS {LearningStats} | R Documentation |
Density Function, Distribution Function and/or Quantile Function Representations associated with a F-Snedecor Distribution
Description
plotBeta
represents density, distribution and/or quantile functions associated with a F-Snedecor
distribution with certain df1
and df2
degrees of freedom.
Usage
plotFS(df1, df2, type = "b", col = "black")
Arguments
df1 , df2 |
the degrees of freedom of the F-Snedecor distribution. |
type |
a character string giving the type of desired plot. The following values are possible: "b" (default) for density function, distribution function and quantile function representations together, "dis" for distribution function representation, "den" for density function representation and "q" for quantile function representation. |
col |
a single colour associated with the different representations; default to "black". |
Value
This function is called for the side effect of drawing the plot.
Examples
df1=10;df2=15
plotFS(df1,df2)
plotFS(df1,df2,col="red")
plotFS(df1,df2,type="q")
plotFS(df1,df2,type="dis")
plotFS(df1,df2,type="den")
[Package LearningStats version 0.1.0 Index]