https://github.com/jhidding/gnuplotlite.jl
Responsive and composable no-nonsense interface to Gnuplot
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 (6.3%) to scientific vocabulary
Keywords
Repository
Responsive and composable no-nonsense interface to Gnuplot
Basic Info
- Host: GitHub
- Owner: jhidding
- License: apache-2.0
- Language: Julia
- Default Branch: main
- Homepage: https://jhidding.github.io/GnuplotLite.jl
- Size: 606 KB
Statistics
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
- Releases: 2
Topics
Metadata Files
README.md
GnuplotLite.jl
Responsive, composable, no-nonsense interface to Gnuplot. This has the following design goals:
- Responsiveness: this should be the thinnest of possible wrappers. The biggest drag to plotting in Julia is the number of lines of code that sit in between the programmer and the plotter.
- Composability: it should be easy to extend GnuplotLite.
- Transparency: it should be easy to reason about how data is entered into Gnuplot.
That being said, there are so many plotting packages in Julia. When should you use this?
- Use
GnuplotLiteif you are in love with Gnuplot and want nothing to sit in between you and it.
```julia using GnuplotLite
gnuplot() do gp gp |> send("set term svg background 'white'") |> send("set output 'sine.svg'") |> send("plot sin(x)") end ```
You can specialize writing data to Gnuplot by overloading the send() method.
```julia x = -4:0.15:4 y = x z = sinc.(sqrt.(x.^2 .+ y'.^2))
gnuplot() do gp gp |> send("data" => (x=collect(x),y=collect(y),z=z)) |> send("plot \$data matrix nonuniform with image") end ```
Check out the full documentation.
License
Copyright 2022, Johan Hidding, Netherlands eScience Center.
Licensed under the Apache 2.0 license, see LICENSE.
Owner
- Name: Johannes Hidding
- Login: jhidding
- Kind: user
- Location: Amersfoort
- Company: @NLeSC
- Website: https://jhidding.github.io/
- Repositories: 114
- Profile: https://github.com/jhidding
GitHub Events
Total
- Push event: 2
Last Year
- Push event: 2
Committers
Last synced: 7 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Johan Hidding | j****g@e****l | 20 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 1
- Total pull requests: 0
- Average time to close issues: less than a minute
- Average time to close pull requests: N/A
- Total issue authors: 1
- Total pull request authors: 0
- Average comments per issue: 2.0
- Average comments per pull request: 0
- Merged pull requests: 0
- 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
- JuliaTagBot (1)
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
- Total downloads: unknown
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 2
juliahub.com: GnuplotLite
Responsive and composable no-nonsense interface to Gnuplot
- Homepage: https://jhidding.github.io/GnuplotLite.jl
- Documentation: https://docs.juliahub.com/General/GnuplotLite/stable/
- License: Apache-2.0
-
Latest release: 0.1.2
published over 2 years ago
Rankings
Dependencies
- actions/checkout v2 composite
- julia-actions/setup-julia v1 composite
- JuliaRegistries/TagBot v1 composite