Mosaic Playground
view source on Github
Upload Data
Download Spec
Spec Format:
JSON
YAML
Example Spec:
Show Query Logs
Mosaic Docs
Github
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"data"
:
{
"aapl"
:
{
"file"
:
"data/stocks.parquet"
,
"where"
:
"Symbol = 'AAPL'"
}
}
,
"plot"
:
[
{
"mark"
:
"lineY"
,
"data"
:
{
"from"
:
"aapl"
}
,
"x"
:
"Date"
,
"y"
:
"Close"
}
]
,
"width"
:
680
,
"height"
:
200
}
Loading...
Timestamp
Query
11:21:07
CREATE TABLE IF NOT EXISTS aapl AS SELECT * FROM read_parquet('https://raw.githack.com/uwdata/mosaic/main/data/stocks.parquet') WHERE Symbol = 'AAPL'