Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

License

NotificationsYou must be signed in to change notification settings

cmclean5/rSpectral

Repository files navigation

The goal of ‘rSpectral’ is to make Spectral Modularity graph clusteringmethod available to most of R graph frameworks.

Installation

You can install the development version of rSpectral fromGitHub with:

# install.packages("devtools")devtools::install_github("cmclean5/rSpectral")

The stable version is available on CRAN:

install.packages("rSpectral")

Example

This is a basic example which shows you how to solve a common problem

  1. load the karate club graph and plot Faction membership:
library(rSpectral)library(igraph)#>#> Attaching package: 'igraph'#> The following objects are masked from 'package:stats':#>#>     decompose, spectrum#> The following object is masked from 'package:base':#>#>     uniondata(karate,package="igraphdata")l<-layout_nicely(karate)memT<-V(karate)$Factionpalette<- rainbow(max(as.numeric(memT)))plot(karate,vertex.color=palette[memT],layout=l)

  1. run spectral clustering on graph
mem0<-igraph::membership(rSpectral::spectral_igraph_communities(karate))
  1. plot the graph with membership colors
palette<- rainbow(max(as.numeric(mem0)))plot(karate,vertex.color=palette[mem0],layout=l)

  1. run spectral clustering on graph, fixing neighbouring nodes found insame community
mem1<-igraph::membership(rSpectral::spectral_igraph_communities(karate,fix_neig=1))
  1. and plot again
palette<- rainbow(max(as.numeric(mem1)))plot(karate,vertex.color=palette[mem1],layout=l)

  1. run spectral clustering - fixing neighbouring nodes, Cnmin=5
mem1.5<-igraph::membership(rSpectral::spectral_igraph_communities(karate,fix_neig=1,Cn_min=5))
  1. and the last plot
palette<- rainbow(max(as.numeric(mem1.5)))plot(karate,vertex.color=palette[mem1.5],layout=l)

GraphNEL objects could be processed similarily, all other graph typescould be converted either toigraph or toGraphNEL by packages suchasIntergraph.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors2

  •  
  •  

[8]ページ先頭

©2009-2025 Movatter.jp