Last active
April 27, 2018 13:53
-
-
Save FloWuenne/45f7af22ba772120eb3506bdf5c820c9 to your computer and use it in GitHub Desktop.
Run certain gists in R from GithubGist
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
library(devtools) | |
#### Specific datasets | |
## Specific time point Rds | |
source_gist("https://gist.github.com/FloWuenne/df2dca6804f562ed90db26a04508af31", filename = "Create_clustering_module_Rds.R") | |
## Specific time point .Rdata | |
source_gist("https://gist.github.com/FloWuenne/dfd1e00c198b2ae1adeb16720a844441",, filename = "Create_clustering_module_Rds.R") | |
#### All datasets | |
## ALL time points .Rds, original clustering | |
source_gist("https://gist.github.com/FloWuenne/c45c9b85f674fbd3febd9ce030eb1de6", filename = "Clustering_module_shiny_ALL_Rds.R") | |
## renamed datasets | |
source_gist("https://gist.github.com/FloWuenne/d48f8f65fc963aeaba065efc3a9334c1", filename = "cluster_module_shiny_ALL_renamed.R") | |
#### Full dataset | |
## Full dataset | |
source_gist("https://gist.github.com/FloWuenne/4f2074d791f7912119a8bfc285ce724c", filename = "extract_shiny_data_Full_dataset.R") | |
## Merged and renamed cluster on full datasets | |
source_gist("https://gist.github.com/FloWuenne/3091954e9a1ae5c8c11bf774f8e1a979", filename = "extract_shiny_clustering_renamed_full.R") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment