Skip to content

Commit 2de6ea9

Browse files
committed
Update docs
1 parent bb15be3 commit 2de6ea9

File tree

6 files changed

+96
-9
lines changed

6 files changed

+96
-9
lines changed

.RData

-1 Bytes
Binary file not shown.

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
![](http://www.r-pkg.org/badges/version/eAnalytics)
22
![](http://cranlogs.r-pkg.org/badges/grand-total/eAnalytics)
3+
![](http://cranlogs.r-pkg.org/badges/eAnalytics)
34
[![DOI](https://zenodo.org/badge/35055898.svg)](https://zenodo.org/badge/latestdoi/35055898)
45

5-
# Features
6+
<img src="https://github.com/paulgovan/eAnalytics/blob/master/inst/app/www/favicon.png?raw=true" style="width:25.0%" />
7+
8+
# eAnalytics
69
* Profile: take an overview of the industry
710
* Performance: measure key performance indicators (KPIs)
811
* Trends: identify changes in the industry over time
@@ -48,34 +51,34 @@ eAnalytics is built around the [energyr](https://github.com/paulgovan/energyr) R
4851
## Home
4952
Launching the app first brings up the Home 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.
5053

51-
![Home](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Dashboard.png?raw=true)
54+
![](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Dashboard.png?raw=true)
5255

5356
## Profile
5457
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.
5558

5659
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.
5760

58-
![Profile](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Profile2.png?raw=true)
61+
![](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Profile2.png?raw=true)
5962

6063
## Performance
6164
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.
6265

63-
![Performance](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Performance2.png?raw=true)
66+
![](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Performance2.png?raw=true)
6467

6568
## Trends
6669

6770
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.
6871

6972
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.
7073

71-
![Trends](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Trends2.png?raw=true)
74+
![](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Trends2.png?raw=true)
7275

7376
## Data
7477
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.
7578

76-
![Data](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Data.png?raw=true)
79+
![](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Data.png?raw=true)
7780

7881
## Explorer
7982
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.
8083

81-
![Explorer2](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Explorer2.png?raw=true)
84+
![](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Explorer2.png?raw=true)

index.md

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
![](http://www.r-pkg.org/badges/version/eAnalytics)
2+
![](http://cranlogs.r-pkg.org/badges/grand-total/eAnalytics)
3+
![](http://cranlogs.r-pkg.org/badges/eAnalytics)
4+
[![DOI](https://zenodo.org/badge/35055898.svg)](https://zenodo.org/badge/latestdoi/35055898)
5+
6+
<img src="https://github.com/paulgovan/eAnalytics/blob/master/inst/app/www/favicon.png?raw=true" style="width:25.0%" />
7+
8+
# eAnalytics
9+
* Profile: take an overview of the industry
10+
* Performance: measure key performance indicators (KPIs)
11+
* Trends: identify changes in the industry over time
12+
* Explorer: discover new relationships in the data
13+
14+
# Overview
15+
eAnalytics is a [Shiny](http://shiny.rstudio.com) web application built on top of [R](https://www.r-project.org) for energy analytics. To learn more about this project, check out this [article](http://doi.org/10.5334/jors.144).
16+
17+
# Getting Started
18+
To install eAnalytics in R:
19+
20+
```S
21+
install.packages("eAnalytics")
22+
```
23+
24+
Or to install the latest developmental version:
25+
26+
```S
27+
devtools::install_github('paulgovan/eAnalytics')
28+
```
29+
30+
To launch the app:
31+
32+
```S
33+
eAnalytics::eAnalytics()
34+
```
35+
36+
Or to access the app through a browser, visit [paulgovan.shinyapps.io/eAnalytics](https://paulgovan.shinyapps.io/eAnalytics/).
37+
38+
# Data
39+
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:
40+
41+
* `electric`: Electric Company Financial Data
42+
* `gas`: Natural Gas Company Financial Data
43+
* `hydropower`: Hydropower Plant Data
44+
* `lng`: LNG Plant Data
45+
* `oil`: Oil Company Financial Data
46+
* `pipeline`: Natural Gas Pipeline Project Data
47+
* `storage`: Natural Gas Storage Field Data
48+
49+
# Tutorial
50+
51+
## Home
52+
Launching the app first brings up the Home 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.
53+
54+
![](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Dashboard.png?raw=true)
55+
56+
## Profile
57+
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.
58+
59+
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.
60+
61+
![](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Profile2.png?raw=true)
62+
63+
## Performance
64+
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.
65+
66+
![](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Performance2.png?raw=true)
67+
68+
## Trends
69+
70+
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.
71+
72+
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.
73+
74+
![](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Trends2.png?raw=true)
75+
76+
## Data
77+
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.
78+
79+
![](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Data.png?raw=true)
80+
81+
## Explorer
82+
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.
83+
84+
![](https://github.com/paulgovan/eAnalytics/blob/master/inst/images/Explorer2.png?raw=true)

inst/app/ui.r

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ shinydashboard::dashboardPage(
153153
width = 8,
154154
shiny::img(
155155
src = "favicon.png",
156-
height = 50,
157-
width = 50
156+
height = 200,
157+
width = 175
158158
),
159159
shiny::h2("eAnalyics"),
160160
shiny::h4("Dynamic Web-based Analytics for the Energy Industry"),

inst/app/www/favicon.png

26.8 KB
Loading

vignettes/.eAnalytics.Rmd.icloud

162 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)