Skip to content

Commit df1d3de

Browse files
committed
Refactor interface, add many features
pick ab82e6e Refactor interface, add many features
1 parent 7901ecf commit df1d3de

5 files changed

Lines changed: 533 additions & 150 deletions

File tree

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ version = "0.10.2"
88

99
[deps]
1010
Arpack = "7d9fca2a-8960-54d3-9f78-7d1dccf2cb97"
11+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
1112
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1213
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1314
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
@@ -16,9 +17,8 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1617

1718
[compat]
1819
Arpack = "0.3, 0.4, 0.5"
19-
Statistics = "1"
2020
StatsAPI = "^1.3"
21-
StatsBase = "^0.33, 0.34"
21+
StatsBase = "^0.33"
2222
julia = "1.1"
2323

2424
[extras]

src/MultivariateStats.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,11 @@ module MultivariateStats
112112
CA, # Type: correspondence analysis
113113

114114
MCA, # Type: multiple correspondence analysis
115-
ca, # fit and return a correspondence analysis
116-
mca, # fit and return a multiple correspondence analysis
117-
objectscores, # return the object scores or coordinates from CA or MCA
118-
variablescores, # return the variable/category scores or coordinates from CA or MCA
119-
inertia # return the inertia (derived from eigenvalues) for CA
115+
object_coords, # return the object scores or coordinates from CA or MCA
116+
variable_coords, # return the variable/category scores or coordinates from CA or MCA
117+
inertia, # return the inertia (derived from eigenvalues) for CA
118+
ca_stats, # fit statistics
119+
quali_passive # handle qualitative passive variables
120120

121121
## source files
122122
include("types.jl")

0 commit comments

Comments
 (0)