Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xtreamsrl/tsviz
An RStudio addin to provide easy and interactive time series visualization
https://github.com/xtreamsrl/tsviz
cran r rstudio-addin time-series
Last synced: 3 months ago
JSON representation
An RStudio addin to provide easy and interactive time series visualization
- Host: GitHub
- URL: https://github.com/xtreamsrl/tsviz
- Owner: xtreamsrl
- License: other
- Created: 2019-07-13T14:58:16.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-19T21:43:14.000Z (about 4 years ago)
- Last Synced: 2024-06-11T12:43:18.217Z (5 months ago)
- Topics: cran, r, rstudio-addin, time-series
- Language: R
- Homepage: https://CRAN.R-project.org/package=tsviz
- Size: 963 KB
- Stars: 41
- Watchers: 2
- Forks: 10
- Open Issues: 2
-
Metadata Files:
- Readme: README.Rmd
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
- jimsghstars - xtreamsrl/tsviz - An RStudio addin to provide easy and interactive time series visualization (R)
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# tsviz[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
[![Travis build status](https://travis-ci.org/xtreamsrl/tsviz.svg?branch=master)](https://travis-ci.org/donlelef/tsviz)
[![CRAN status](https://www.r-pkg.org/badges/version/tsviz)](https://CRAN.R-project.org/package=tsviz)
[![CRAN monthly downloads](https://cranlogs.r-pkg.org/badges/tsviz)](https://cran.r-project.org/package=tsviz)
[![CRAN downloads](https://cranlogs.r-pkg.org/badges/grand-total/tsviz)](https://cran.r-project.org/package=tsviz)
[![Say Thanks!](https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg)](https://saythanks.io/to/donlelef)An RStudio addin to provide easy and interactive time series visualization.
To be visible to the addin, time series must be stored in a dataframe in the global environment, with:- at least a column of type *Date*
- at least a column of type *numeric*## Installation
You can install the released version of tsviz from [CRAN](https://CRAN.R-project.org) with:
```{r cran_install, eval=FALSE}
install.packages("tsviz")
```Or install the development version from Github:
```{r github_install, eval=FALSE}
devtools::install_github("donlelef/tsviz")
```Once you have installed the package, you do not need to load it with `library()`, the addins are installed on your machine as part of the package install process.
## Example
First, let us load some suitable data:
```{r example, message=FALSE}
library(tsviz)
prices <- crypto_prices
```Then, we can run the addin:
![Tutorial gif](man/figures/tsviz.gif)
That's it.