-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathinstall.R
More file actions
43 lines (29 loc) · 850 Bytes
/
install.R
File metadata and controls
43 lines (29 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Installs the required R packages.
#
# version: 1.1
# Author: Vincent Labatut 06/2013
#
# setwd("~/eclipse/workspaces/Networks/Orleans/")
# setwd("C:/Eclipse/workspaces/Networks/Orleans/")
# source("install.R")
###############################################################################
# power law tests
install.packages("igraph")
#print(packageVersion("igraph"))
# Davies-Bouldin measure
install.packages("clusterSim")
#print(packageVersion("clusterSim"))
# anova (unbalanced)
install.packages("car")
# Rand index
install.packages("flexclust")
# hive plots
install.packages("HiveR")#
# hclust clustering algorithm
install.packages("fastcluster")
# test for normality
install.packages("fBasics")
# Tukey's post-hoc test
install.packages("multcomp")
# Hive plot
install.packages("HiveR")