Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Prometheus | 50,868 | 911 | 17 hours ago | 748 | November 15, 2023 | 953 | apache-2.0 | Go | ||
The Prometheus monitoring system and time series database. | ||||||||||
Timescaledb | 15,865 | 11 hours ago | 596 | other | C | |||||
An open-source time-series SQL database optimized for fast ingest and complex queries. Packaged as a PostgreSQL extension. | ||||||||||
Questdb | 13,055 | 3 | 11 hours ago | 79 | November 24, 2023 | 420 | apache-2.0 | Java | ||
An open source time-series database for fast ingest and SQL queries | ||||||||||
Uplot | 8,179 | 36 | 9 days ago | 58 | October 27, 2023 | 99 | mit | JavaScript | ||
📈 A small, fast chart for time series, lines, areas, ohlc & bars | ||||||||||
Darts | 6,727 | 17 | 2 days ago | 32 | November 18, 2023 | 242 | apache-2.0 | Python | ||
A python library for user-friendly forecasting and anomaly detection on time series. | ||||||||||
Iotdb | 4,094 | 19 | 12 hours ago | 23 | October 11, 2023 | 397 | apache-2.0 | Java | ||
Apache IoTDB | ||||||||||
Tsai | 4,054 | 2 | 24 days ago | 47 | November 13, 2023 | 57 | apache-2.0 | Jupyter Notebook | ||
Time series Timeseries Deep Learning Machine Learning Pytorch fastai | State-of-the-art Deep Learning library for Time Series and Sequences in Pytorch / fastai | ||||||||||
Plotjuggler | 3,768 | 4 days ago | 129 | mpl-2.0 | C++ | |||||
The Time Series Visualization Tool that you deserve. | ||||||||||
Bosun | 3,359 | 3 | 5 months ago | 11 | May 13, 2021 | 9 | mit | Go | ||
Time Series Alerting Framework | ||||||||||
Pytorch Forecasting | 3,349 | 10 | 2 days ago | 34 | July 26, 2020 | 438 | mit | Python | ||
Time series forecasting with PyTorch |
R Wrapper for the Energy Information Administration (EIA) API.
EIAdata has been updated for v2 of the EIA API. To pull an energy series you'll have to know the Series ID from the version 1 API. If you don't know the Series IDs for the data you want, do the following:
Note you only have to do the above once to get the Series ID.
This package provides programmatic access to the Energy Information Administration's (EIA) API (See http://www.eia.gov/beta/api/). There are currently over a million unique time series available through the API. To use the package you'll need a free API key from here: http://www.eia.gov/beta/api/register.cfm
The package also contains a function to return the latest EIA Weekly Natural Gas Storage Report. This function does not require an API key.
The package has 2 1 main functions, getCatEIA and getEIA.
getCatEIA: allows you to query the parent and subcategories of a given category, as well as any series IDs within that category.
getEIA: allows you to pull a time series (given by the series ID). The resulting object is of class xts.
This is the development version. You may prefer to install the version on CRAN here: http://cran.r-project.org/web/packages/EIAdata/index.html
If you would like to install this development version, install the devtools
package and use:
library(devtools)
install_github("Matt-Brigida/EIAdata")
If you have the CRAN version and simply want to test the development version you can use:
library(devtools)
dev_mode(on = T)
install_github("Matt-Brigida/EIAdata")
## test the package
## and when you are done
dev_mode(on = F)
## and you are again using the CRAN version