Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>Comparing Gamma Density Funcdtions </title>
- <script src="./js/d3.min.js"></script>
- <script src="./js/simple_statistics.js"></script>
- <script src="./js/jstat.js"></script>
- <script src="./js/common.js"></script>
- <script src="./js/colors.js"></script>
- <link rel="stylesheet" href="./css/common.css">
- <style>
- #alpha1Box,
- #alpha2box,
- #beta1Box,
- #beta2Box {
- width: 100px!important;
- }
- </style>
- </head>
- <body>
- <header>Comparing Gamma Density Functions</header>
- <p>This simulation facilitates the comparison of shapes of gamma probability
- density functions with different values of parameters α and β.
- For either of the curves, change its values of α and β in the
- text boxes to explore how the parameters of the gamma density function
- affect its shape.</p>
- <div class="center">
- <svg id="canvas" width="600" height="500"></svg>
- </div>
- <div class="center">
- <table>
- <tbody>
- <tr>
- <td> </td>
- <td>Solid </td>
- <td> </td>
- <td> Dotted </td>
- </tr>
- <tr>
- <td>α1: </td>
- <td id="alpha1box"></td>
- <td> α2: </td>
- <td id="alpha2box"></td>
- </tr>
- <tr>
- <td> β1: </td>
- <td id="beta1box"></td>
- <td> β2: </td>
- <td id="beta2box"></td>
- </tr>
- </tbody>
- </table>
- </div>
- <script type="text/javascript" src="./js/gamma_compare.js"> </script>
- <footer>
- <p>Created by Gary H. McClelland, Professor Emeritus | University of Colorado Boulder</p>
- <p>© Cengage Learning. All Rights Reserved.</p>
- </footer>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement