This package is designed for users coming from Stata, which offers a super fast table viewing function that opens up a new window to see the data set.
It is also designed for users coming from R Studio and those who use Juno who but dislike the way viewing a data set in a single pane limits window snapping and clicking and dragging.
It will be available to download from the general registry after the 3-day waiting period is over. In the meantime you can play around with it using
Because TableView.jl uses lazy-loading of data, FloatingTableView can handle very large datasets with no performance penalty. However, because it uses an Electron-based window via Blink.jl, there is a non-trivial “time to first browse” startup time. Repeated calls to browse will be fast.
I will add that to the list of comparisons! The lazy loading is definitely key. BrowseTables.jl offers something similar as well, but I found it too slow for a dataset with, say, 100,000 rows. This was very doable with FloatingTableView.
Update: A new version has been released with the boolean keyword argument newwindow which allows you to open up two or more datasets at the same time.
Here is a full docstring:
browse(t; newwindow = false, kwargs...)
Browse data source in a new Blink window using
Tables.jl’s showtable function.
Arguments
t, a Tables.jl-compatible data source,
for example a DataFrame or a NamedTuple
of Vectors
newwindow, boolean keyword argument to view the data
in a new Blink window instead of over-writing.
Viewing in a new window will be slower than over-writing.
kwargs..., keyword arguments passed to the showtable command from TableView.jl to
control the details of the new data viewer.
See showtable for details.
Examples
julia> t = (a = rand(10), b = rand(10))
julia> browse(t)
julia> t = rand(100, 100)
julia> browse(t, dark = true)
TableView.jl recently had a version bump (h/t @xiaodai), so I made added the new version and bumped FloatingTableView to 0.2.0. Just tagged it a new version.
It turns out ag-grid is proprietary and copy-and-pasting is an enterprise-only feature. So this feature, while important, is unlikely to happen in the near future.
PS, check out ClipData.jl for a (probably) more fully-featured version of that clip2m function.