Skip to content

Latest commit

 

History

History
40 lines (25 loc) · 1.52 KB

README.md

File metadata and controls

40 lines (25 loc) · 1.52 KB

Browse.jl

Browse.jl Screenshot

Julia package that provides visualizations of Tables.jl-compatible tabular data. Under the hood, it uses the immediate mode GUI Dear ImGui (via CImGui.jl), meaning that the visualizations will update when the underlying data changes.

Very much in alpha stage.

Reminder: this software is provided as-is, without any sorts of guarantees or implicit promises of support. See the license for details. If you want features or bug fixes, you can file an issue and hope that someone resolves it, or you can roll up your sleeves and do it yourself.

Installation

Browse.jl is not registered. To install, type in the Julia REPL:

    ] add https://github.com/jmboehm/Browse.jl

Example

using Revise, RDatasets, DataFrames
using Browse

using CImGui
using CImGui.CSyntax
using CImGui.CSyntax.CStatic

Browse.init()

df_iris = dataset("datasets", "iris")
Browse.@browse df_iris

Related Packages