https://github.com/juliagraphs/graphdataframebridge.jl
Tools for interoperability between DataFrame objects and LightGraphs and MetaGraphs objects
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
Keywords from Contributors
Repository
Tools for interoperability between DataFrame objects and LightGraphs and MetaGraphs objects
Basic Info
Statistics
- Stars: 32
- Watchers: 3
- Forks: 13
- Open Issues: 1
- Releases: 6
Topics
Metadata Files
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
- Website: https://juliagraphs.org
- Repositories: 34
- Profile: https://github.com/JuliaGraphs
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
Top Committers
| Name | 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
- Documentation: https://docs.juliahub.com/General/GraphDataFrameBridge/stable/
- License: MIT
-
Latest release: 0.3.2
published over 2 years ago