Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zikrach/price-optimization-shiny
Shiny app for Price Optimization using prophet and lme4 libraries for R.
https://github.com/zikrach/price-optimization-shiny
optimization price price-data price-optimization prophet r shiny-apps time-series
Last synced: 3 months ago
JSON representation
Shiny app for Price Optimization using prophet and lme4 libraries for R.
- Host: GitHub
- URL: https://github.com/zikrach/price-optimization-shiny
- Owner: zikrach
- License: gpl-3.0
- Created: 2017-09-22T05:20:07.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-04T09:49:56.000Z (over 6 years ago)
- Last Synced: 2024-06-05T02:34:00.821Z (5 months ago)
- Topics: optimization, price, price-data, price-optimization, prophet, r, shiny-apps, time-series
- Language: R
- Homepage:
- Size: 487 KB
- Stars: 36
- Watchers: 6
- Forks: 24
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - zikrach/price-optimization-shiny - Shiny app for Price Optimization using prophet and lme4 libraries for R. (R)
README
# Shiny app for Price Optimization
Price optimization is the use of mathematical analysis by a company to determine how customers will respond to different prices for its products and services through different channels. It is also used to determine the prices that the company determines will best meet its objectives such as maximizing operating profit. The data used in price optimization includes operating costs, inventories and historic prices and sales. Price optimization practice has been implemented in industries including retail, banking, airlines, casinos, hotels, car rental, cruise lines and insurance. ()
## Libraries
In the application we use the next libraries:
* shiny
* shinyjs
* shinydashboard (version 0.5.3)
* plotly
* DT
* dygraphs
* xts
* data.table
* dplyr
* plotly
* ggplot2
* prophet
* lme4## Dataset
You can download an initial dataset from [Dunnhumby](https://www.dunnhumby.com), we use dataset [Breakfast at the Frat](https://www.dunnhumby.com/sourcefiles).
## Application look
## Docker install ##
1. Get application source code:
```bash
git clone https://github.com/zikrach/price-optimization-shiny
cd price-optimization-shiny/
```2. Build docker image:
```bash
docker build -t price_optimization .
```3. Run docker image:
```bash
docker run --rm -p 3838:3838 price_optimization
```4. Open your favorite browser and navigate to the `http://127.0.0.1:3838/price_optimization/`