Skip to content

Commit cb97a33

Browse files
committed
Refactor interface, add many features
pick ab82e6e Refactor interface, add many features pick 7901ecf Update API to conform to package
1 parent fa98503 commit cb97a33

File tree

5 files changed

+533
-153
lines changed

5 files changed

+533
-153
lines changed

Project.toml

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

99
[deps]
1010
Arpack = "7d9fca2a-8960-54d3-9f78-7d1dccf2cb97"
11-
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
11+
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
1212
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1313
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
1414
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
@@ -17,11 +17,8 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1717

1818
[compat]
1919
Arpack = "0.3, 0.4, 0.5"
20-
Distributions = "0.25"
21-
StableRNGs = "1"
22-
Statistics = "1"
2320
StatsAPI = "^1.3"
24-
StatsBase = "^0.33, 0.34"
21+
StatsBase = "^0.33"
2522
julia = "1.1"
2623

2724
[extras]

src/MultivariateStats.jl

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

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

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

0 commit comments

Comments
 (0)