Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MakieOrg/GraphMakie.jl
Plotting graphs with Makie
https://github.com/MakieOrg/GraphMakie.jl
Last synced: 3 months ago
JSON representation
Plotting graphs with Makie
- Host: GitHub
- URL: https://github.com/MakieOrg/GraphMakie.jl
- Owner: MakieOrg
- License: mit
- Created: 2021-04-09T13:52:17.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-05-17T19:39:41.000Z (6 months ago)
- Last Synced: 2024-06-11T20:17:02.995Z (5 months ago)
- Language: Julia
- Homepage: https://graph.makie.org
- Size: 180 MB
- Stars: 131
- Watchers: 9
- Forks: 22
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GraphMakie
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](http://graph.makie.org/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](http://graph.makie.org/dev/)
[![Build Status](https://github.com/MakieOrg/GraphMakie.jl/workflows/CI/badge.svg)](https://github.com/MakieOrg/GraphMakie.jl/actions)
[![Coverage](https://codecov.io/gh/MakieOrg/GraphMakie.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/MakieOrg/GraphMakie.jl)Plotting graphs¹... with [Makie](https://github.com/MakieOrg/Makie.jl)!
This package is just a plotting recipe, you still need to use one of the Makie backends.
`GraphMakie` is in an early development stage and might break often. Any
contribution such as suggesting features, raising issues and opening PRs are
welcome!Starting from v0.3 `GraphMakie.jl` switches from `LightGraphs.jl` to `Graphs.jl` for the graph representation. See this [discourse post](https://discourse.julialang.org/t/lightgraphs-jl-transition/69526/17) for more information. If you want to use `LightGraphs.jl` please specifically `] add [email protected]`!
## Installation
``` julia
pkg> add GraphMakie
```## Basic usage
```julia
using GLMakie
using GraphMakie
using Graphs
g = complete_graph(10)
graphplot(g)
```----------------------------
¹the networky type with nodes and edges