plot.metalog {rmetalog} | R Documentation |
Plot of the metalog object
## S3 method for class 'metalog'
plot(x, ...)
x |
metalog object created using |
... |
ignored; included for S3 generic/method consistency |
A summary plot of the CDF and PDF for each term
# Load example data
## Not run:
data("fishSize")
# Create a bounded metalog object
myMetalog <- metalog(fishSize$FishSize,
bounds=c(0, 60),
boundedness = 'b',
term_limit = 13)
plot(myMetalog)
## End(Not run)