Advertisement
Guest User

Comparing Gamma Density Functions corrected html

a guest
Apr 18th, 2024
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1.  
  2.  
  3.  
  4. <html lang="en">
  5.  
  6. <head>
  7. <meta charset="utf-8">
  8. <title>Comparing Gamma Density Funcdtions </title>
  9. <script src="./js/d3.min.js"></script>
  10. <script src="./js/simple_statistics.js"></script>
  11. <script src="./js/jstat.js"></script>
  12. <script src="./js/common.js"></script>
  13. <script src="./js/colors.js"></script>
  14. <link rel="stylesheet" href="./css/common.css">
  15. <style>
  16. #alpha1Box,
  17. #alpha2box,
  18. #beta1Box,
  19. #beta2Box {
  20. width: 100px!important;
  21. }
  22. </style>
  23. </head>
  24.  
  25. <body>
  26.  
  27. <header>Comparing Gamma Density Functions</header>
  28.  
  29. <p>This simulation facilitates the comparison of shapes of gamma probability
  30. density functions with different values of parameters α and β.
  31. For either of the curves, change its values of α and β in the
  32. text boxes to explore how the parameters of the gamma density function
  33. affect its shape.</p>
  34.  
  35. <div class="center">
  36. <svg id="canvas" width="600" height="500"></svg>
  37. </div>
  38.  
  39. <div class="center">
  40. <table>
  41. <tbody>
  42. <tr>
  43. <td> &nbsp; </td>
  44. <td>Solid </td>
  45. <td> &nbsp; </td>
  46. <td> Dotted </td>
  47. </tr>
  48. <tr>
  49. <td>α1: </td>
  50. <td id="alpha1box"></td>
  51. <td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; α2: </td>
  52. <td id="alpha2box"></td>
  53. </tr>
  54. <tr>
  55. <td> β1: </td>
  56. <td id="beta1box"></td>
  57. <td> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; β2: </td>
  58. <td id="beta2box"></td>
  59. </tr>
  60. </tbody>
  61. </table>
  62. </div>
  63.  
  64. <script type="text/javascript" src="./js/gamma_compare.js"> </script>
  65.  
  66. <footer>
  67. <p>Created by Gary H. McClelland, Professor Emeritus | University of Colorado Boulder</p>
  68. <p>© Cengage Learning. All Rights Reserved.</p>
  69. </footer>
  70.  
  71. </body>
  72. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement