as.dudi
is called by many functions (dudi.pca
, dudi.coa
, dudi.acm
, ...)
and not directly by the user. It creates duality diagrams.t.dudi
returns an object of class 'dudi' where the rows are the columns and the columns are the rows
of the initial dudi.
is.dudi
returns TRUE if the object is of class dudi
redo.dudi
computes again an analysis, eventually changing the number of kept axes. Used by other functions.
as.dudi(df, col.w, row.w, scannf, nf, call, type, tol = 1e-07,
full = FALSE)
print.dudi(x, ...)
is.dudi(x)
redo.dudi(dudi, newnf = 2)
t.dudi(x)
match.call()
c(type, "dudi")
dudi
data(deug)
dd1 <- dudi.pca(deug$tab, scannf = FALSE)
dd1
t(dd1)
is.dudi(dd1)
redo.dudi(dd1,3)
Run the code above in your browser using DataLab