-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
117 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# eAnalytics 0.1.1 | ||
|
||
## Major changes | ||
|
||
* Added the ability to save data to a csv file | ||
* Updated upstream dependency 'energyr' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
--- | ||
title: "eAnalytics: Dynamic Web-based Analytics for the Energy Industry" | ||
author: "Paul Govan" | ||
date: "`r Sys.Date()`" | ||
output: rmarkdown::html_vignette | ||
vignette: > | ||
%\VignetteIndexEntry{An Introduction to eAnalytics} | ||
%\VignetteEngine{knitr::rmarkdown} | ||
%\VignetteEncoding{UTF-8} | ||
--- | ||
|
||
eAnalytics is a [Shiny](http://shiny.rstudio.com) web application built on top of [R](https://www.r-project.org) for energy-related data analytics. The app is powered by the excellent [plotly](https://plot.ly/r/), [Leaflet](https://rstudio.github.io/leaflet/), [DT](https://rstudio.github.io/DT/), and [googleVis](https://cran.r-project.org/web/packages/googleVis/vignettes/googleVis_examples.html) packages. To learn more about our project, see this [publication](http://ascelibrary.org/doi/abs/10.1061/9780784413012.143). | ||
|
||
# Getting Started | ||
To install eAnalytics in R: | ||
|
||
```c | ||
install.packages("eAnalytics") | ||
``` | ||
|
||
Or to install the latest developmental version: | ||
|
||
```c | ||
devtools::install_github('paulgovan/eAnalytics') | ||
``` | ||
To launch the app: | ||
```c | ||
eAnalytics() | ||
``` | ||
|
||
Or to access the app through a browser, visit [paulgovan.shinyapps.io/eAnalytics](https://paulgovan.shinyapps.io/eAnalytics). | ||
|
||
# Data | ||
eAnalytics is built around the [energyr](/~https://github.com/paulgovan/energyr) R package of data published by the United States Federal Energy Regulatory Commission [www.ferc.gov](www.ferc.gov). energyr contains several datasets for different industry segments: | ||
|
||
* Electric Company Financial Data | ||
* Natural Gas Company Financial Data | ||
* Hydropower Plant Data | ||
* LNG Plant Data | ||
* Oil Company Financial Data | ||
* Natural Gas Pipeline Project Data | ||
* Natural Gas Storage Field Data | ||
|
||
# Tutorial | ||
|
||
## Dashboard | ||
Launching the app first brings up the Dashboard tab, which is basically a landing page that gives a brief introduction to the app and includes three value boxes for the current number of projects, companies, and facilities in the database. | ||
|
||
<img src="/~https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Dashboard.png?raw=true" height="500px" /> | ||
|
||
## Profile | ||
The Profile tab contains a number of interactive maps with information about facilities for the selected industry. The figure below shows the Profile tab for the Natural Gas Industry. | ||
|
||
Multiple options are currently available for customizing the maps. Choose a preferred size or color variable in the movable well panel, select from different basemaps via the lower-right control, and click on a specific facility to view additional information. | ||
|
||
<img src="/~https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Profile2.png?raw=true" height="500px" /> | ||
|
||
## Performance | ||
The Performance tab tracks a number of Key Performance Indicators (KPIs) for the selected industry. The following figure shows the Performance tab for the Natural Gas Industry. | ||
|
||
<img src="/~https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Performance2.png?raw=true" height="500px" /> | ||
|
||
## Trends | ||
|
||
The Trends tab contains multiple interactive time-series charts of financial information for the selected industry. The following figure shows the Performance tab for the Electric industry. | ||
|
||
The time-series chart in the Trends tab is linked to the data table shown in the Data tab. Searching, filtering, and sorting the data in the data table will automatically update the time-series chart with the selected data. | ||
|
||
<img src="/~https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Trends2.png?raw=true" height="500px" /> | ||
|
||
## Data | ||
The Data tab contains interactive datatables of information for the selected industry. The data can be searched, filtered, and sorted as required. The selected data can then be copied to the clipboard, downloaded to a csv or pdf file, or sent to a local printer. The figure below shows the Data tab for the Hydropower industry. | ||
|
||
<img src="/~https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Data.png?raw=true" height="500px" /> | ||
|
||
## Explorer | ||
The Explorer tab contains a dynamic motion chart for exploring several indicators over time. The following figure shows the Explorer tab for the Natural Gas Industry. | ||
|
||
<img src="/~https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Explorer2.png?raw=true" height="500px" /> | ||
|
||
# Source Code | ||
eAnalytics is an [open source](http://opensource.org) project, and the source code and project data is available at [/~https://github.com/paulgovan/eAnalytics](/~https://github.com/paulgovan/eAnalytics) | ||
|
||
# Issues | ||
For issues or requests, please use the GitHub issue tracker at [/~https://github.com/paulgovan/eAnalytics/issues](/~https://github.com/paulgovan/eAnalytics/issues) | ||
|
||
# Contributions | ||
Ccontributions are welcome by sending a [pull request](/~https://github.com/paulgovan/eAnalytics/pulls) | ||
|
||
# License | ||
eAnalytics is licensed under the [Apache](http://www.apache.org/licenses/LICENSE-2.0) licence. © Paul Govan (2016) |