The function returns a plot after using the parameters and model given by the user.
AQSysCurve(
modelName,
modelPars,
seriesNames = NULL,
xlbl = "",
ylbl = "",
col = "black",
type = "p",
cex = 1,
cexlab = 1,
cexaxis = 1,
cexmain = 1,
cexsub = 1,
xmax = 35,
HR = FALSE,
NP = 100,
filename = NULL,
wdir = NULL,
save = FALSE,
silent = FALSE,
...
)Equation to be used: merchuk, murugesan [type:string]
Model's parameters [type::data.frame]
A list of sequential names which will identify each system provided by the user in the dataSET variable. [type:List]
Plot's Horizontal axis label.
Plot's Vertical axis label.
Legacy from plot package. For more details,
see plot.default
1-character string giving the type of plot desired. The
following values are possible, for details, see plot:
"p" for points, "l" for lines,
"b" for both points and lines,
"c" for empty points joined by lines,
"o" for overplotted points and lines,
"s" and "S" for stair steps and
"h" for histogram-like vertical lines. Finally,
"n" does not produce any points or lines.
Legacy from plot package. For more details,
see plot.default
Legacy from plot package. For more details,
see plot.default
Legacy from plot package. For more details,
see plot.default
Legacy from plot package. For more details,
see plot.default
Legacy from plot package. For more details,
see plot.default
Maximum value for the Horizontal axis' value (bottom-rich component) [type:double]
Adjust Plot's text to be compatible with High Resolution size [type:Logical]
Number of points used to build the fitted curve. Default is 100. [type:Integer]
Filename provided by the user to save a given plot. [type:String]
The directory in which the plot file will be saved. [type:String]
Save the generated plot in the disk using path and filename provided by the user. [type:Logical]
save plot file without actually showing it to the user. [type:Logical]
other graphical parameters (see par and
section ‘Details’ below).
A plot using the input model within the chosen interval and the curve's raw XY data. If no interval is selected, xmax = 0.4.
The function owns predefined set of equations that can be seen below and must be used, with adequated parameters, to return a plot which represent the chosen model.
# NOT RUN {
AQSysCurve("murugesan", data.frame(90.389, -34.897, 2.924), col = "red")
# }
Run the code above in your browser using DataLab