Built-in interactive table support for the Julia engine (parity with R DT / Python itables)
#14589
RagavRajan
started this conversation in
Feature Requests
Replies: 3 comments
-
|
@jkrumbiegel, what are you thoughts on this? |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
@RagavRajan Quarto/Julia does support interactive table, etc. What's needed is the Julia library to do it. For example, using Bonito which only has sort ability: ---
format: html
engine: julia
---
```{julia}
#| include: false
using Pkg
Pkg.add("DataFrames")
Pkg.add("Bonito")
using DataFrames, Bonito
Page(exportable = true, offline = true)
```
```{julia}
df = DataFrame(A = 1:100, B = round.(rand(100), digits = 2), C = repeat(["x", "y", "z", "w"], 25))
App(Bonito.Table(df))
```Related to: |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Ohh I understand. Thanks for clarifying @mcanouil. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Quarto's HTML output has well-supported paths for interactive data tables in R (
DT::datatable()) and Python (itables.show()). There is no equivalent for the Julia engine —df-print: pagedonly ships for R, and the dashboard table post-processor (src/format/dashboard/format-dashboard-tables.ts) only matches DT/itables script signatures.Beta Was this translation helpful? Give feedback.
All reactions