├── .gitignore ├── README.md ├── centrality_tools.jl ├── data ├── mathoverflow-answers.zip ├── tags-math-sx │ ├── DATA-DESCRIPTION.txt │ ├── README.txt │ ├── tags-math-sx-node-labels.txt │ ├── tags-math-sx-nverts.txt │ ├── tags-math-sx-simplex-labels.txt │ ├── tags-math-sx-simplices.txt │ └── tags-math-sx-times.txt └── walmart-trips │ ├── README.txt │ ├── hyperedges-walmart-trips.txt │ ├── label-names-walmart-trips.txt │ └── node-labels-walmart-trips.txt ├── figures ├── edge-scatter-math.jpg ├── edge-scatter-walmart.jpg ├── edge-vs-weights-scatter-math.jpg ├── edge-vs-weights-scatter-walmart.jpg ├── node-scatter-math.pdf ├── node-scatter-walmart.jpg ├── non-uniform-sunflower.pdf └── uniform-sunflower.pdf ├── make-top-centrality-table.jl ├── real_data_tools.jl ├── real_hypergraph_data.jl ├── sunflower.jl └── sunflower_tools.jl /.gitignore: -------------------------------------------------------------------------------- 1 | unused_material/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/README.md -------------------------------------------------------------------------------- /centrality_tools.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/centrality_tools.jl -------------------------------------------------------------------------------- /data/mathoverflow-answers.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/data/mathoverflow-answers.zip -------------------------------------------------------------------------------- /data/tags-math-sx/DATA-DESCRIPTION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/data/tags-math-sx/DATA-DESCRIPTION.txt -------------------------------------------------------------------------------- /data/tags-math-sx/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/data/tags-math-sx/README.txt -------------------------------------------------------------------------------- /data/tags-math-sx/tags-math-sx-node-labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/data/tags-math-sx/tags-math-sx-node-labels.txt -------------------------------------------------------------------------------- /data/tags-math-sx/tags-math-sx-nverts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/data/tags-math-sx/tags-math-sx-nverts.txt -------------------------------------------------------------------------------- /data/tags-math-sx/tags-math-sx-simplex-labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/data/tags-math-sx/tags-math-sx-simplex-labels.txt -------------------------------------------------------------------------------- /data/tags-math-sx/tags-math-sx-simplices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/data/tags-math-sx/tags-math-sx-simplices.txt -------------------------------------------------------------------------------- /data/tags-math-sx/tags-math-sx-times.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/data/tags-math-sx/tags-math-sx-times.txt -------------------------------------------------------------------------------- /data/walmart-trips/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/data/walmart-trips/README.txt -------------------------------------------------------------------------------- /data/walmart-trips/hyperedges-walmart-trips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/data/walmart-trips/hyperedges-walmart-trips.txt -------------------------------------------------------------------------------- /data/walmart-trips/label-names-walmart-trips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/data/walmart-trips/label-names-walmart-trips.txt -------------------------------------------------------------------------------- /data/walmart-trips/node-labels-walmart-trips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/data/walmart-trips/node-labels-walmart-trips.txt -------------------------------------------------------------------------------- /figures/edge-scatter-math.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/figures/edge-scatter-math.jpg -------------------------------------------------------------------------------- /figures/edge-scatter-walmart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/figures/edge-scatter-walmart.jpg -------------------------------------------------------------------------------- /figures/edge-vs-weights-scatter-math.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/figures/edge-vs-weights-scatter-math.jpg -------------------------------------------------------------------------------- /figures/edge-vs-weights-scatter-walmart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/figures/edge-vs-weights-scatter-walmart.jpg -------------------------------------------------------------------------------- /figures/node-scatter-math.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/figures/node-scatter-math.pdf -------------------------------------------------------------------------------- /figures/node-scatter-walmart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/figures/node-scatter-walmart.jpg -------------------------------------------------------------------------------- /figures/non-uniform-sunflower.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/figures/non-uniform-sunflower.pdf -------------------------------------------------------------------------------- /figures/uniform-sunflower.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/figures/uniform-sunflower.pdf -------------------------------------------------------------------------------- /make-top-centrality-table.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/make-top-centrality-table.jl -------------------------------------------------------------------------------- /real_data_tools.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/real_data_tools.jl -------------------------------------------------------------------------------- /real_hypergraph_data.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/real_hypergraph_data.jl -------------------------------------------------------------------------------- /sunflower.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/sunflower.jl -------------------------------------------------------------------------------- /sunflower_tools.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftudisco/node-edge-hypergraph-centrality/HEAD/sunflower_tools.jl --------------------------------------------------------------------------------