{"id":34612205,"url":"https://github.com/kevinschoon/qviz","last_synced_at":"2026-06-01T07:32:26.180Z","repository":{"id":79443538,"uuid":"269676924","full_name":"kevinschoon/qviz","owner":"kevinschoon","description":"QViz Interactive Plotting","archived":false,"fork":false,"pushed_at":"2020-07-23T23:44:05.000Z","size":1325,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-27T03:56:09.473Z","etag":null,"topics":["data-analysis","data-visualization","go","gonum","qframe","yaegi"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kevinschoon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-06-05T15:05:13.000Z","updated_at":"2020-07-23T23:44:08.000Z","dependencies_parsed_at":"2023-02-26T15:45:59.997Z","dependency_job_id":null,"html_url":"https://github.com/kevinschoon/qviz","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/kevinschoon/qviz","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevinschoon%2Fqviz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevinschoon%2Fqviz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevinschoon%2Fqviz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevinschoon%2Fqviz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kevinschoon","download_url":"https://codeload.github.com/kevinschoon/qviz/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kevinschoon%2Fqviz/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33765378,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-01T02:00:06.963Z","response_time":115,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data-analysis","data-visualization","go","gonum","qframe","yaegi"],"created_at":"2025-12-24T14:17:00.342Z","updated_at":"2026-06-01T07:32:26.161Z","avatar_url":"https://github.com/kevinschoon.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# QViz ![QViz](https://github.com/kevinschoon/qviz/workflows/QViz/badge.svg) [![API reference](https://img.shields.io/badge/godoc-reference-5272B4)](https://pkg.go.dev/github.com/kevinschoon/qviz?tab=doc)\n\nQViz is a utility to quickly and interactively visualize data with by evaluating Go source code at runtime. It works by exposing the [gonum/plot](https://github.com/gonum/plot/) library to a [yaegi](https://github.com/containous/yaegi/) interpreter.\n\n![ss](static/ss.png)\n\n## Usage\n\n```text\nUsage: qviz [OPTIONS] SCRIPT_PATH\n\nGenerate plots by writing Go scripts\n\nArguments:\n  SCRIPT_PATH      path to a qviz script file\n\nOptions:\n  -o, --out        file output path (implies headless)\n  -t, --type       file output type [eps,jpg,pdf,png,svg,tiff] (default \"jpg\")\n  -w, --width      output width (pixels) (default 900)\n  -h, --height     output height (pixels) (default 800)\n      --headless   do not render the UI\n```\n\n### Interactive Usage\nQViz has a built in native UI for viewing plots that will start automatically when you run the command.\n```bash\n# Monitor the simple.go script file for changes in real time\nqviz examples/simple/simple.go\n# Now open up the script file in your favorite editor\nvim examples/simple/simple.go\n```\n\n## Writing Scripts\n\nValid QViz scripts are normal Go files that import the `pkg/stdlib` overlay package. \nExample scripts can be found [here](/examples).\n\n```go\npackage main\n\nimport qviz \"github.com/kevinschoon/qviz/pkg/stdlib\"\n\nfunc main() {\n    // qviz.New is a convenience function that returns a\n    // new *plot.Plot \n    plt := qviz.New()\n    plt.Title.Text = \"My New Chart\"\n    // qviz.Render must be called at the end of your script file and only once,\n    // calling it before hand will halt the execution of the program.\n    qviz.Render(plt)\n}\n```\n\n## Roadmap\n\n- [ ] CLI based plotter\n- [ ] allow external user defined packages\n- [x] first class integration with [qframe](https://github.com/tobgu/qframe)\n- [x] finish importing the remaining Gonum packages\n- [x] native UI\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkevinschoon%2Fqviz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkevinschoon%2Fqviz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkevinschoon%2Fqviz/lists"}