File: methods.R

package info (click to toggle)
r-cran-lisreltor 0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 148 kB
  • sloc: makefile: 2
file content (19 lines) | stat: -rw-r--r-- 487 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

print.lisrel <- function(x, ...)
{
  cat("\n",paste(x$output,collapse="\n"),"\n")
}
# 
# # Plot function from semPlot:
# plot.lisrel <- function(x, ...) 
# {
#   if (!require("semPlot")) stop("Plot method requires 'semPlot' package to be installed")
#   semPaths(x, ...)
# }
# 
# # Summary function returns RAM:
# summary.lisrel <- function(object, ...) 
# {
#   if (!require("semPlot")) stop("Summary method requires 'semPlot' package to be installed")
#   semPlotModel(object)@RAM
# }