-
Notifications
You must be signed in to change notification settings - Fork 0
/
explorer.qmd
45 lines (32 loc) · 1.1 KB
/
explorer.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
title: "Quarto Data Explorer"
---
```{r, echo=FALSE}
library(DT)
```
### Select Dataset and Format
<label for="dataset">Select Dataset:</label>
<select id="dataset">
<option value="mtcars">mtcars</option>
<option value="cars">cars</option>
</select>
<h3>Data Preview</h3>
<div id="dataTable">
```{r dataTable, echo=FALSE, results='asis'}
# Placeholder content
```
</div>
<label for="format">Select Format:</label>
<select id="format">
<option value="json">json</option>
<option value="csv">csv</option>
<option value="excel">excel</option>
<option value="parquet">parquet</option>
</select>
<button id="downloadButton">Download Data</button>
<!-- Include DataTables CSS and JS -->
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.13.1/css/jquery.dataTables.css">
<script type="text/javascript" charset="utf8" src="https://code.jquery.com/jquery-3.5.1.js"></script>
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.13.1/js/jquery.dataTables.js"></script>
<!-- Link to the external JavaScript file -->
<script src="data-explorer.js"></script>