https://github.com/juliagraphs/graphdataframebridge.jl

Tools for interoperability between DataFrame objects and LightGraphs and MetaGraphs objects

https://github.com/juliagraphs/graphdataframebridge.jl

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (3.3%) to scientific vocabulary

Keywords

dataframes graphs hacktoberfest julia juliagraphs

Keywords from Contributors

graphics data-structures datastructures graph-algorithms graph-theory julialang numerical programming-language mathematics
Last synced: 6 months ago · JSON representation

Repository

Tools for interoperability between DataFrame objects and LightGraphs and MetaGraphs objects

Basic Info
  • Host: GitHub
  • Owner: JuliaGraphs
  • License: mit
  • Language: Julia
  • Default Branch: master
  • Homepage:
  • Size: 54.7 KB
Statistics
  • Stars: 32
  • Watchers: 3
  • Forks: 13
  • Open Issues: 1
  • Releases: 6
Topics
dataframes graphs hacktoberfest julia juliagraphs
Created about 8 years ago · Last pushed 6 months ago
Metadata Files
Readme License

README.md

GraphDataFrameBridge.jl

Tools for interoperability between DataFrame objects and LightGraphs and MetaGraphs objects.

Examples:

```julia julia> using DataFrames julia> using GraphDataFrameBridge

julia> df = DataFrame(Dict("start" => ["a", "b", "a", "d"], "finish" => ["b", "c", "e", "e"], "weights" => 1:4, "extras" => 5:8))

Simple undirected MetaGraph

julia> mg = MetaGraph(df, :start, :finish) {5, 4} undirected Int64 metagraph with Float64 weights defined by :weight (default weight 1.0)

julia> props(mg, 1) Dict Symbol → Any with 1 entries :name → "a"

Simple directed MetaDiGraph

julia> mdg = MetaDiGraph(df, :start, :finish) {5, 4} directed Int64 metagraph with Float64 weights defined by :weight (default weight 1.0)

MetaGraph with weight attribute set and

:extras values stored as attributes.

julia> mgw = MetaGraph(df, :start, :finish, weight=:weights, edge_attributes=:extras) {5, 4} undirected Int64 metagraph with Float64 weights defined by :weight (default weight 1.0)

julia> props(mgw, 1, 2) Dict Symbol → Any with 2 entries :extras → 5 :weight → 1 ```

Updating Release:

Note to self: update version in Project.toml, then comment on commit @JuliaRegistrator register

Owner

  • Name: JuliaGraphs
  • Login: JuliaGraphs
  • Kind: organization

Graph modeling and analysis packages for the Julia programming language

GitHub Events

Total
  • Watch event: 2
  • Delete event: 1
  • Push event: 1
  • Pull request event: 2
Last Year
  • Watch event: 2
  • Delete event: 1
  • Push event: 1
  • Pull request event: 2

Committers

Last synced: 8 months ago

All Time
  • Total Commits: 52
  • Total Committers: 8
  • Avg Commits per committer: 6.5
  • Development Distribution Score (DDS): 0.462
Past Year
  • Commits: 0
  • Committers: 0
  • Avg Commits per committer: 0.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email Commits
Nick Eubank n****k 28
Nick Eubank n****k@g****m 10
Eric Martin Feltham e****m@i****m 7
Jakob Hoffmann j****n@h****e 3
lassepe l****s@m****g 1
anand jain 3****n 1
Seth Bromberger g****b@b****m 1
Fabian Greimel f****i@g****m 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 10
  • Total pull requests: 13
  • Average time to close issues: 30 days
  • Average time to close pull requests: about 16 hours
  • Total issue authors: 5
  • Total pull request authors: 7
  • Average comments per issue: 3.0
  • Average comments per pull request: 0.85
  • Merged pull requests: 12
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • nickeubank (4)
  • lassepe (3)
  • jtrakk (1)
  • attobot (1)
  • jpfairbanks (1)
Pull Request Authors
  • nickeubank (5)
  • emfeltham (2)
  • jfb-h (2)
  • sbromberger (1)
  • lassepe (1)
  • greimel (1)
  • anandijain (1)
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • julia 2 total
  • Total dependent packages: 1
  • Total dependent repositories: 4
  • Total versions: 11
juliahub.com: GraphDataFrameBridge

Tools for interoperability between DataFrame objects and LightGraphs and MetaGraphs objects

  • Versions: 11
  • Dependent Packages: 1
  • Dependent Repositories: 4
  • Downloads: 2 Total
Rankings
Dependent repos count: 5.6%
Forks count: 10.7%
Average: 14.5%
Stargazers count: 17.9%
Dependent packages count: 24.0%
Last synced: 6 months ago