Skip to content

Commit

Permalink
fix URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
huizezhang-sherry committed Jun 16, 2023
1 parent f5c0b37 commit 10a47ee
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 16 deletions.
8 changes: 4 additions & 4 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ knitr::include_graphics("man/figures/cubble-operations.png")

## Roadmap

* To learn more about the cubble class: [1. The cubble class](articles/cb1class.html)
* To create a cubble or coerce an existing R object into a cubble: [2. Creation and coercion](articles/cb2create.html)
* To incorporate sf or tsibble in a cubble: [3. Compatibility with tsibble and sf](articles/cb3tsibblesf.html)
* To create glyph map, match multiple data sources, and create interactive graphics with cubble: [4. Making a glyph map](articles/cb4glyph.html), [5. Matching different data sources](articles/cb5match.html), and [6. Interactive graphics](articles/cb6interactive.html)
* To learn more about the cubble class: [1. The cubble class](https://huizezhang-sherry.github.io/cubble/articles/cb1class.html)
* To create a cubble or coerce an existing R object into a cubble: [2. Creation and coercion](https://huizezhang-sherry.github.io/cubble/articles/cb2create.html)
* To incorporate sf or tsibble in a cubble: [3. Compatibility with tsibble and sf](https://huizezhang-sherry.github.io/cubble/articles/cb3tsibblesf.html)
* To create glyph map, match multiple data sources, and create interactive graphics with cubble: [4. Making a glyph map](https://huizezhang-sherry.github.io/cubble/articles/cb4glyph.html), [5. Matching different data sources](https://huizezhang-sherry.github.io/cubble/articles/cb5match.html), and [6. Interactive graphics](https://huizezhang-sherry.github.io/cubble/articles/cb6interactive.html)

## Reference
27 changes: 16 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ remotes::install_github("huizezhang-sherry/cubble")
## How cubble organises spatio-temporal data

Cubble organises spatio-temporal data in two structures: In a nested
cubble, spatial variables are organised as columns and temporal
variables are nested within a specialised `ts` column:
cubble (spatial cubble), spatial variables are organised as columns and
temporal variables are nested within a specialised `ts` column:

#> # cubble: key: id [3], index: date, nested form
#> # spatial: [144.8321, -37.98, 145.0964, -37.6655], Missing CRS!
Expand All @@ -49,8 +49,9 @@ variables are nested within a specialised `ts` column:
#> 2 ASN00086077 145. -38.0 12.1 moorabbin airport 94870 <tibble [10 × 4]>
#> 3 ASN00086282 145. -37.7 113. melbourne airport 94866 <tibble [10 × 4]>

In a long cubble, the temporal variables are expanded into the long
form, while the spatial variables are stored as a data attribute:
In a long cubble (temporal cubble), the temporal variables are expanded
into the long form, while the spatial variables are stored as a data
attribute:

#> # cubble: key: id [3], index: date, long form
#> # temporal: 2020-01-01 -- 2020-01-10 [1D], no gaps
Expand All @@ -77,16 +78,20 @@ The two forms can be pivoted back and forth with the pair of verb:
## Roadmap

- To learn more about the cubble class: [1. The cubble
class](articles/cb1class.html)
class](https://huizezhang-sherry.github.io/cubble/articles/cb1class.html)
- To create a cubble or coerce an existing R object into a cubble: [2.
Creation and coercion](articles/cb2create.html)
- To incoporate sf or tsibble in a cubble: [3. Compatibility with
tsibble and sf](articles/cb3tsibblesf.html)
Creation and
coercion](https://huizezhang-sherry.github.io/cubble/articles/cb2create.html)
- To incorporate sf or tsibble in a cubble: [3. Compatibility with
tsibble and
sf](https://huizezhang-sherry.github.io/cubble/articles/cb3tsibblesf.html)
- To create glyph map, match multiple data sources, and create
interactive graphics with cubble: [4. Making a glyph
map](articles/cb4glyph.html), [5. Matching different data
sources](articles/cb5match.html), and [6. Interactive
graphics](articles/cb6interactive.html)
map](https://huizezhang-sherry.github.io/cubble/articles/cb4glyph.html),
[5. Matching different data
sources](https://huizezhang-sherry.github.io/cubble/articles/cb5match.html),
and [6. Interactive
graphics](https://huizezhang-sherry.github.io/cubble/articles/cb6interactive.html)

## Reference

Expand Down
2 changes: 1 addition & 1 deletion vignettes/cb4glyph.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ library(ggplot2)
library(tsibble)
```

Sometimes, we wish to communicate spatial and temporal information collectively through visualisation. This can be achieved through several graphical displays: one can make faceted maps across time, creating map animations, or constructing interactive graphics to link between map and time series plot. While interactive graphics will be the main focus of vignette [6. Interactive graphics](cb6interactive.hml), this vignette will introduce a specific type of spatio-temporal plot called glyph maps.
Sometimes, we wish to communicate spatial and temporal information collectively through visualisation. This can be achieved through several graphical displays: one can make faceted maps across time, creating map animations, or constructing interactive graphics to link between map and time series plot. While interactive graphics will be the main focus of vignette [6. Interactive graphics](https://huizezhang-sherry.github.io/cubble/cb6interactive.hml), this vignette will introduce a specific type of spatio-temporal plot called glyph maps.


# Understanding glyph maps
Expand Down

0 comments on commit 10a47ee

Please sign in to comment.