CS240A: Classes of Graphs and Their Properties slides under construction – see the Matlab transcript for what I actually did in class.

Slides:



Advertisements
Similar presentations
Complex Networks Luis Miguel Varela COST meeting, Lisbon March 27 th 2013.
Advertisements

Collective Dynamics of ‘Small World’ Networks C+ Elegans: Ilhan Savut, Spencer Telford, Melody Lim 29/10/13.
It’s a Small World by Jamie Luo. Introduction Small World Networks and their place in Network Theory An application of a 1D small world network to model.
Network Properties 1.Global Network Properties ( Chapter 3 of the course textbook “Analysis of Biological Networks” by Junker and Schreiber) 1)Degree distribution.
Visualisation of head.txt. Data capture Data for the head figure was captured by a laser scanner. The object is mounted on a turntable, and illuminated.
LYRIC-BASED ARTIST NETWORK METHODOLOGY Derek Gossi CS 765 Fall 2014.
Advanced Topics in Data Mining Special focus: Social Networks.
1 Evolution of Networks Notes from Lectures of J.Mendes CNR, Pisa, Italy, December 2007 Eva Jaho Advanced Networking Research Group National and Kapodistrian.
Topology Generation Suat Mercan. 2 Outline Motivation Topology Characterization Levels of Topology Modeling Techniques Types of Topology Generators.
Networks. Graphs (undirected, unweighted) has a set of vertices V has a set of undirected, unweighted edges E graph G = (V, E), where.
Network Models Social Media Mining. 2 Measures and Metrics 2 Social Media Mining Network Models Why should I use network models? In may 2011, Facebook.
Mining and Searching Massive Graphs (Networks)
1 Representing Graphs. 2 Adjacency Matrix Suppose we have a graph G with n nodes. The adjacency matrix is the n x n matrix A=[a ij ] with: a ij = 1 if.
UNDERSTANDING VISIBLE AND LATENT INTERACTIONS IN ONLINE SOCIAL NETWORK Presented by: Nisha Ranga Under guidance of : Prof. Augustin Chaintreau.
Spectral Clustering Scatter plot of a 2D data set K-means ClusteringSpectral Clustering U. von Luxburg. A tutorial on spectral clustering. Technical report,
Network Statistics Gesine Reinert. Yeast protein interactions.
CS 728 Lecture 4 It’s a Small World on the Web. Small World Networks It is a ‘small world’ after all –Billions of people on Earth, yet every pair separated.
Common Properties of Real Networks. Erdős-Rényi Random Graphs.
Advanced Topics in Data Mining Special focus: Social Networks.
1 Algorithms for Large Data Sets Ziv Bar-Yossef Lecture 7 May 14, 2006
CS240A: Computation on Graphs. Graphs and Sparse Matrices Sparse matrix is a representation.
Random Graph Models of Social Networks Paper Authors: M.E. Newman, D.J. Watts, S.H. Strogatz Presentation presented by Jessie Riposo.
The Erdös-Rényi models
Optimization Based Modeling of Social Network Yong-Yeol Ahn, Hawoong Jeong.
(Social) Networks Analysis III Prof. Dr. Daning Hu Department of Informatics University of Zurich Oct 16th, 2012.
Topic 13 Network Models Credits: C. Faloutsos and J. Leskovec Tutorial
Biological Networks Lectures 6-7 : February 02, 2010 Graph Algorithms Review Global Network Properties Local Network Properties 1.
Network properties Slides are modified from Networks: Theory and Application by Lada Adamic.
Data Analysis in YouTube. Introduction Social network + a video sharing media – Potential environment to propagate an influence. Friendship network and.
CS240A: Measurements of Graphs slides under construction – see the Matlab transcript for what I actually did in class.
Clustering of protein networks: Graph theory and terminology Scale-free architecture Modularity Robustness Reading: Barabasi and Oltvai 2004, Milo et al.
7.1 and 7.2: Spanning Trees. A network is a graph that is connected –The network must be a sub-graph of the original graph (its edges must come from the.
COLOR TEST COLOR TEST. Social Networks: Structure and Impact N ICOLE I MMORLICA, N ORTHWESTERN U.
Network theory David Lusseau BIOL4062/5062
Part 1: Biological Networks 1.Protein-protein interaction networks 2.Regulatory networks 3.Expression networks 4.Metabolic networks 5.… more biological.
Social Network Analysis Prof. Dr. Daning Hu Department of Informatics University of Zurich Mar 5th, 2013.
3. SMALL WORLDS The Watts-Strogatz model. Watts-Strogatz, Nature 1998 Small world: the average shortest path length in a real network is small Six degrees.
Neural Network of C. elegans is a Small-World Network Masroor Hossain Wednesday, February 29 th, 2012 Introduction to Complex Systems.
Random Dot Product Graphs Ed Scheinerman Applied Mathematics & Statistics Johns Hopkins University IPAM Intelligent Extraction of Information from Graphs.
CS240A: Computation on Graphs. Graphs and Sparse Matrices Sparse matrix is a representation.
Most of contents are provided by the website Graph Essentials TJTSD66: Advanced Topics in Social Media.
Lecture 10: Network models CS 765: Complex Networks Slides are modified from Networks: Theory and Application by Lada Adamic.
Some NP-complete Problems in Graph Theory Prof. Sin-Min Lee.
Graph Theory. A branch of math in which graphs are used to solve a problem. It is unlike a Cartesian graph that we used throughout our younger years of.
Most of contents are provided by the website Network Models TJTSD66: Advanced Topics in Social Media (Social.
341- INTRODUCTION TO BIOINFORMATICS Overview of the Course Material 1.
Clusters Recognition from Large Small World Graph Igor Kanovsky, Lilach Prego Emek Yezreel College, Israel University of Haifa, Israel.
MAT 2720 Discrete Mathematics Section 8.2 Paths and Cycles
Trees Thm 2.1. (Cayley 1889) There are nn-2 different labeled trees
1 Friends and Neighbors on the Web Presentation for Web Information Retrieval Bruno Lepri.
Community structure in graphs Santo Fortunato. More links “inside” than “outside” Graphs are “sparse” “Communities”
Informatics tools in network science
The Structure of Scientific Collaboration Networks by M. E. J. Newman CMSC 601 Paper Summary Marie desJardins January 27, 2009.
Spanning Tree Definition:A tree T is a spanning tree of a graph G if T is a subgraph of G that contains all of the vertices of G. A graph may have more.
Random Walk for Similarity Testing in Complex Networks
3.1 Clustering Finding a good clustering of the points is a fundamental issue in computing a representative simplicial complex. Mapper does not place any.
Social Networks Analysis
CS 290H Administrivia: April 16, 2008
Empirical analysis of Chinese airport network as a complex weighted network Methodology Section Presented by Di Li.
Network analysis.
Network Science: A Short Introduction i3 Workshop
The Watts-Strogatz model
Quiz Review.
Section 8.2: Shortest path and small world effect
Department of Computer Science University of York
Network Science: A Short Introduction i3 Workshop
Graph Operations And Representation
Clustering Coefficients
Read GLN sections 6.1 through 6.4.
Warm Up – Tuesday Find the critical times for each vertex.
Presentation transcript:

CS240A: Classes of Graphs and Their Properties slides under construction – see the Matlab transcript for what I actually did in class

Some graph statistics (and Matlab tools) Vertex degree histogram: dhist.m Avg shortest path length or BFS level profile: bfslevels.m Clustering coefficient: ccoeff.m c = 3*(# triangles) / (# connected triples) Laplacian eigenvalues (and vectors): meshpart toolbox Separator size: meshpart toolbox Fill (chordal completion size): analyze.m and amd.m

Some classes of graphs Graphs observed in the wild (see Florida collection for many examples) : Finite element meshes: CGmats.m Circuit simulation graphs: circuit_3.mat Relationship networks: coAuthorsDBLP.mat, PGPgiantcompo.mat … many others! Classifications of graphs: Power-law graphs Small-world graphs Planar graphs Overlap graphs Generators for classes of graphs: Erdos-Renyi (flat) random graphs: sprandsym.m RMAT random graph generator: rmat.m 2-D and 3-D mesh generators: grid5.m etc. in meshpart toolbox

RMAT Approximate Power-Law Graph

Strongly Connected Components