Init HW setup
This commit is contained in:
parent
73b6863e1d
commit
7ab6c49651
31
Schrick-Noah_CS-7863_Homework-3.R
Normal file
31
Schrick-Noah_CS-7863_Homework-3.R
Normal file
@ -0,0 +1,31 @@
|
||||
# Homework 3 for the University of Tulsa' s CS-7863 Network Theory Course
|
||||
# Network Clustering
|
||||
# Professor: Dr. McKinney, Spring 2022
|
||||
# Noah Schrick - 1492657
|
||||
|
||||
# Imports
|
||||
library(igraph)
|
||||
library(igraphdata)
|
||||
install.packages("./WGCNA_1.67.tar.gz")
|
||||
|
||||
data(karate)
|
||||
data(yeast)
|
||||
|
||||
g1 <- karate
|
||||
g1.netname <- "Karate"
|
||||
g2 <- yeast
|
||||
g2.netname <- "Yeast"
|
||||
|
||||
##################### Part 1: Laplace Spectral Clustering #####################
|
||||
|
||||
|
||||
########################## Part 2: Newman Modularity ##########################
|
||||
|
||||
|
||||
##################### Part 3: Recursive Newman Modularity #####################
|
||||
|
||||
|
||||
###################### Part 4: TOM and Dynamic Tree Cut ######################
|
||||
|
||||
|
||||
################################ Part 5: UMAP ################################
|
||||
Loading…
x
Reference in New Issue
Block a user