https://github.com/jhidding/gnuplotlite.jl

Responsive and composable no-nonsense interface to Gnuplot

https://github.com/jhidding/gnuplotlite.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 (6.3%) to scientific vocabulary

Keywords

gnuplot julia plotting visualization
Last synced: 5 months ago · JSON representation

Repository

Responsive and composable no-nonsense interface to Gnuplot

Basic Info
Statistics
  • Stars: 4
  • Watchers: 2
  • Forks: 0
  • Open Issues: 0
  • Releases: 2
Topics
gnuplot julia plotting visualization
Created about 3 years ago · Last pushed 8 months ago
Metadata Files
Readme License

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 GnuplotLite if 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

GitHub Events

Total
  • Push event: 2
Last Year
  • Push event: 2

Committers

Last synced: 7 months ago

All Time
  • Total Commits: 20
  • Total Committers: 1
  • Avg Commits per committer: 20.0
  • Development Distribution Score (DDS): 0.0
Past Year
  • Commits: 3
  • Committers: 1
  • Avg Commits per committer: 3.0
  • Development Distribution Score (DDS): 0.0
Top Committers
Name Email 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

  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent repos count: 9.9%
Dependent packages count: 38.9%
Average: 40.1%
Forks count: 53.5%
Stargazers count: 58.1%
Last synced: 6 months ago

Dependencies

.github/workflows/documentation.yml actions
  • actions/checkout v2 composite
  • julia-actions/setup-julia v1 composite
.github/workflows/tagbot.yml actions
  • JuliaRegistries/TagBot v1 composite