Skip to content

Instantly share code, notes, and snippets.

@bohdanszymanik
Last active November 16, 2022 21:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bohdanszymanik/29c02e44b142ad4ecfbaf15fbc029e33 to your computer and use it in GitHub Desktop.
Save bohdanszymanik/29c02e44b142ad4ecfbaf15fbc029e33 to your computer and use it in GitHub Desktop.
tcltkUrl <- "https://cran.r-project.org/bin/windows/contrib/4.0/tcltk2_1.2-11.zip"
install.packages(tcltkUrl, repos=NULL, type="binary")
# tkplotUrl <- "https://cran.r-project.org/bin/windows/contrib/4.0/tcltk2_1.2-11.zip"
# install.packages(tkplotUrl, repos=NULL, type="binary")
# library(tkplot)
knitrUrl <- "https://cran.r-project.org/bin/windows/contrib/4.0/knitr_1.38.zip"
install.packages(knitrUrl, repos=NULL, type="binary")
rglUrl <- "https://cran.r-project.org/bin/windows/contrib/4.0/rgl_0.108.3.zip"
install.packages(rglUrl, repos=NULL, type="binary")
fastmapUrl <- "https://cran.r-project.org/bin/windows/contrib/4.0/fastmap_1.1.0.zip"
install.packages(fastmapUrl, repos=NULL, type="binary")
htmltoolsUrl <- "https://cran.r-project.org/bin/windows/contrib/4.0/htmltools_0.5.2.zip"
install.packages(htmltoolsUrl, repos=NULL, type="binary")
htmlwidgetsUrl <- "https://cran.r-project.org/bin/windows/contrib/4.0/htmlwidgets_1.5.4.zip"
install.packages(htmlwidgetsUrl, repos=NULL, type="binary")
igraphUrl <- "https://cran.r-project.org/bin/windows/contrib/4.0/igraph_1.3.0.zip"
install.packages(igraphUrl, repos=NULL, type="binary")
DBIurl <- "https://cran.r-project.org/bin/windows/contrib/4.0/DBI_1.1.2.zip"
install.packages(DBIurl, repos=NULL, type="binary")
rJavaurl <- "https://cran.r-project.org/bin/windows/contrib/4.0/rJava_1.0-6.zip"
install.packages(rJavaurl, repos=NULL, type="binary")
rjdbcurl <- "https://cran.r-project.org/bin/windows/contrib/4.0/RJDBC_0.2-10.zip"
install.packages(rjdbcurl, repos=NULL, type="binary")
tweenr <- "https://cran.r-project.org/bin/windows/contrib/4.0/tweenr_1.0.2.zip"
install.packages(tweenr, repos=NULL, type="binary")
polyclipurl <- "https://cran.r-project.org/bin/windows/contrib/4.0/polyclip_1.10-0.zip"
install.packages(polyclipurl, repos=NULL, type="binary")
ggforceurl <- "https://cran.r-project.org/bin/windows/contrib/4.0/ggforce_0.3.3.zip"
install.packages(ggforceurl, repos=NULL, type="binary")
ggraphurl <- "https://cran.r-project.org/bin/windows/contrib/4.0/ggraph_2.0.5.zip"
install.packages(ggraphurl, repos=NULL, type="binary")
ggrepelurl <- "https://cran.r-project.org/bin/windows/contrib/4.0/ggrepel_0.9.1.zip"
install.packages(ggrepelurl, repos=NULL, type="binary")
graphlayoutsurl <- "https://cran.r-project.org/bin/windows/contrib/4.0/graphlayouts_0.8.0.zip"
install.packages(graphlayoutsurl, repos=NULL, type="binary")
install.packages("tibble")
install.packages("dplyr")
install.packages("tidygraph")
install.packages("tidyr")
library(tcltk)
library(igraph)
library(htmlwidgets)
library(htmltools)
library(fastmap)
library(rgl)
library(knitr)
library(DBI)
library(rJava)
library(RJDBC)
library(tibble)
library(getPass)
library(dplyr)
library(tidyr)
library(purrr)
library(tidygraph)
library(graphlayouts)
library(ggrepel)
library(tweenr)
library(polyclip)
library(ggforce)
library(ggraph)
# useful references
# https://jeremydfoote.com/Communication-and-Social-Networks/resources/ggraph_walkthrough.html
# https://www.r-bloggers.com/2019/03/graph-analysis-using-the-tidyverse/
# https://www.jessesadler.com/post/network-analysis-with-r/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment