Platform
Solutions
Resources
Pricing
Sign in
Sign up
Observable
The end-to-end solution for building and hosting better data apps, dashboards, and reports.
Workspace
Fork
Published
Analyzing Time Series Data
By
3 authors
Edited
Feb 12, 2022
4 forks
Importers
20 stars
1
Analyzing Time Series Data
What’s different? Analyzing Time-Series Forecast Performance
What caused this? An analysis adventure
Discovering Date Patterns
Just because it’s Time, it doesn’t have to be a Line
Correlation over time
Analyzing Time Series Data Interactive Workshop
EIA Electricity Data
NOAA Hourly Weather Data
IEEE VIS 2021 Demo
Three Simple, Flexible Tools: Color, Faceting, and Order
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
url
=
"https://api.eia.gov/series/?api_key=46a64e6fcd154bec1bb42252060d33ba&series_id=EBA.TEX-ALL.NG.COL.H;EBA.TEX-ALL.NG.NG.H;EBA.TEX-ALL.NG.NUC.H;EBA.TEX-ALL.NG.OTH.H;EBA.TEX-ALL.NG.SUN.H;EBA.TEX-ALL.NG.WAT.H;EBA.TEX-ALL.NG.WND.H&start=20210101T00Z&end=20210228T24Z"
Insert cell
// data = d3.json(url) // uncomment this line to fetch from the live API
data
=
FileAttachment
(
"texasCrisis2021.json"
)
.
json
(
)
// We cache the API response for futureproofing this article
.
then
(
(
response
)
=>
{
return
(
response
.
series
.
flatMap
(
(
s
)
=>
s
.
data
.
map
(
(
d
)
=>
{
// each element of the data array is a date, value pair like: ["20210228T00Z", 4666]
let
t
=
s
.
name
.
match
(
/Net generation from (.*) for/
)
[
1
]
;
// if (t == "hydro") t = "hydroelectric";
return
{
id
:
s
.
series_id
,
name
:
s
.
name
,
type
:
t
,
// extracts type of energy for better labels
date
:
d3
.
utcParse
(
"%Y%m%dT%HZ"
)
(
d
[
0
]
)
,
// parse the date
value
:
d
[
1
]
}
;
}
)
)
.
sort
(
(
a
,
b
)
=>
+
a
.
date
-
+
b
.
date
)
)
;
}
)
Insert cell
Insert cell
// match EIA color schemes
color
=
(
{
domain
:
[
'solar'
,
'wind'
,
'coal'
,
'natural gas'
,
'nuclear'
,
'hydro'
,
'other'
]
,
range
:
[
"#FEC704"
,
"#5C9631"
,
"#664F06"
,
"#BD7229"
,
"#A1333F"
,
"#0395D6"
,
"#ADADAD"
]
}
)
Insert cell
Insert cell
import
{
textcolor
}
from
"@observablehq/text-color-annotations-in-markdown"
Insert cell
import
{
authorship
,
navigation
,
workshop
}
from
"@observablehq/timeseries-assets"
Insert cell
One platform
to build and deploy the best data apps
Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Try it for free
Learn more
Fork
View
Export
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
table
Edit
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
url
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
data
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
color
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Edit
Add comment
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML
Add comment
Copy import
Select
Duplicate
Copy link
Embed
Delete
JavaScript
Markdown
HTML