hyper.summary {hyper.fit} | R Documentation |
Summary function for hyper.fit object
Description
Prints out basic summary information for hyper.fit objects output by the hyper.fit function.
Usage
## S3 method for class 'hyper.fit'
summary(object, ...)
Arguments
object |
An object of class hyper.fit. This is the only structure that needs to be provided when executing summary(fitobj) class dependent plotting, which will use the summary.hyper.fit function. |
... |
Arguments passed to summary function. |
Details
Outputs basic summary of the hyper.fit output.
Value
Prints various summary outputs.
Author(s)
Aaron Robotham and Danail Obreschkow
References
Robotham, A.S.G., & Obreschkow, D., PASA, in press
See Also
hyper.basic
, hyper.convert
, hyper.fit-data
, hyper.fit
, hyper.plot
, hyper.sigcor
, hyper.summary
Examples
#### Example using 6dFGS Fundamental Plane data ####
FP6dFGS=read.table(system.file('data/FP6dFGS.tab', package='hyper.fit'), header=TRUE)
fitFP6dFGSw=hyper.fit(FP6dFGS[,c('logIe_J', 'logsigma', 'logRe_J')],
vars=FP6dFGS[,c('logIe_J_err', 'logsigma_err', 'logRe_J_err')]^2, weights=FP6dFGS[,'weights'],
coord.type='alpha', scat.type='vert.axis')
summary(fitFP6dFGSw)
[Package hyper.fit version 1.2.1 Index]