-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
85 changed files
with
5,677 additions
and
6,347 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,56 @@ | ||
############################################################################################# | ||
# Install all the packages necessary to these scripts. | ||
# | ||
# See also src/common/distr_test.R to compile the C programs required for power law fitting. | ||
# | ||
# 09/2019 Vincent Labatut | ||
# | ||
# source("src/install.R") | ||
############################################################################################# | ||
|
||
|
||
|
||
|
||
# graph computing | ||
install.packages("igraph") | ||
# harmonic closeness | ||
install.packages("CINNA") | ||
# block modeling | ||
install.packages("blockmodeling") | ||
|
||
# parallel computation | ||
#install.packages("foreach") | ||
install.packages("future.apply") | ||
install.packages("doParallel") | ||
|
||
# various plots | ||
install.packages("ggplot2") | ||
install.packages("ggExtra") | ||
install.packages("sfsmisc") | ||
# violin plots | ||
install.packages("vioplot") | ||
# colors | ||
install.packages("viridis") | ||
install.packages("SDMTools") | ||
|
||
# statistical tests | ||
install.packages("ercv") | ||
install.packages("poweRlaw") | ||
install.packages("perm") # permutation test | ||
# nonlinear regression | ||
install.packages("minpack.lm") | ||
|
||
# strings | ||
install.packages("stringr") | ||
install.packages("latex2exp") # insert latex code in plot texts | ||
|
||
# polynomials | ||
install.packages("polynom") | ||
|
||
# various fast functions (including binary search) | ||
#install.packages("Rfast") # not used | ||
install.packages("data.table") | ||
|
||
# clustering | ||
install.packages("cluster") | ||
|
||
############################################################################################# | ||
# Install all the packages necessary to these scripts. | ||
# | ||
# See also src/common/stats/distr_test.R to compile the C programs required for power law fitting. | ||
# | ||
# 09/2019 Vincent Labatut | ||
# | ||
# source("src/_install.R") | ||
############################################################################################# | ||
|
||
|
||
|
||
|
||
# graph computing | ||
install.packages("igraph") | ||
# harmonic closeness | ||
install.packages("CINNA") | ||
# block modeling | ||
install.packages("blockmodeling") | ||
|
||
# parallel computation | ||
#install.packages("foreach") | ||
install.packages("future.apply") | ||
install.packages("doParallel") | ||
|
||
# various plots | ||
install.packages("ggplot2") | ||
install.packages("ggExtra") | ||
install.packages("sfsmisc") | ||
# violin plots | ||
install.packages("vioplot") | ||
# colors | ||
install.packages("viridis") | ||
install.packages("SDMTools") | ||
|
||
# statistical tests | ||
install.packages("ercv") | ||
install.packages("poweRlaw") | ||
install.packages("perm") # permutation test | ||
# nonlinear regression | ||
install.packages("minpack.lm") | ||
|
||
# strings | ||
install.packages("stringr") | ||
install.packages("latex2exp") # insert latex code in plot texts | ||
|
||
# polynomials | ||
install.packages("polynom") | ||
|
||
# various fast functions (including binary search) | ||
#install.packages("Rfast") # not used | ||
install.packages("data.table") | ||
|
||
# clustering | ||
install.packages("cluster") | ||
|
Oops, something went wrong.