Edit Page

Tip

The page editor looks and behaves in exactly the same way as the Python and R editors. It provides the same user experience, only it allows you to add html and javascript to customize the page to your needs. Review the readme file for additional customization options and javascript calls.

  • The page will be loaded with all the files required to render the page to the end user

We will now modify the html to add a bit more information into the data dictionary

  • Expand vue_templates, and click on dictionary.html, and copy the text below, overwriting the contents of the file between the script tags.
<span style="font-style:italic">
    <p>
    John would like to invest $10,000 and open his own coffee shop. John’s good friend Jack will contribute his coffee machine to the start-up. However, Jack does not like risks and therefore wants to be employed by John rather than partnering. They have already found the location, but they believe they need 10 weeks to set it up as a café.
    </p>
    <p>
    From market research, John knows that the demand for coffee in his area is a function of price. He has determined that the quantity of cups demanded per month equals approximately to 3500 – 100 * [Price per Cup]^2. However, this function does not describe his observation fully. The demand for coffee also seems to be affected by a random "noise" that John cannot explain. He decides to model this noise through a standard distribution with a mean of 0 and a standard deviation of 50.
    </p>
</span>
Tip

Clicking on the Cog next to the name of the page, then clicking on Configuration provides JSON based configuration options the page can utilise. Review the readme.txt file for information on how to use this configuration.