Created
July 11, 2013 09:04
-
-
Save reinholdsson/5973844 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require(rCharts) | |
| data <- na.omit(MASS::survey) | |
| data$x <- data$Height | |
| data$y <- data$Pulse | |
| a <- rCharts:::Highcharts$new() | |
| a$chart(type = "scatter") | |
| male <- data[data$Sex == "Male", ] | |
| a$series(data = toJSONArray2(male, json = F), name = "Female") | |
| female <- data[data$Sex == "Female", ] | |
| a$series(data = toJSONArray2(female, json = F), name = "Male") | |
| a$tooltip(useHTML = T, formatter = "#! function() { return 'Age: ' + this.point.Age; } !#") | |
| a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype HTML> | |
| <meta charset = 'utf-8'> | |
| <html> | |
| <head> | |
| <link rel='stylesheet' href="http://netdna.bootstrapcdn.com/bootswatch/2.3.1/cosmo/bootstrap.min.css"> | |
| <link rel="stylesheet" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-responsive.min.css" > | |
| <link rel='stylesheet' href="http://twitter.github.io/bootstrap/assets/js/google-code-prettify/prettify.css"> | |
| <link rel='stylesheet' href="http://aozora.github.io/bootplus/assets/css/docs.css"> | |
| <script src='http://code.jquery.com/jquery-1.9.1.min.js' type='text/javascript'></script> | |
| <script src='http://code.highcharts.com/highcharts.js' type='text/javascript'></script> | |
| <script src='http://code.highcharts.com/highcharts-more.js' type='text/javascript'></script> | |
| <style> | |
| .rChart { | |
| display: block | |
| margin: auto auto; | |
| width: 100%; | |
| height: 400px; | |
| } | |
| /* | |
| body { | |
| margin-top: 60px; | |
| } | |
| */ | |
| </style> | |
| </head> | |
| <body> | |
| <div class='container'> | |
| <div class='row'> | |
| <div class='span8'> | |
| <div class="bs-docs-example"> | |
| <div id='chart968a2fe38abd' class='rChart nvd3Plot highcharts'></div> | |
| <br/> | |
| <pre><code class='r'>require(rCharts) | |
| data <- na.omit(MASS::survey) | |
| data$x <- data$Height | |
| data$y <- data$Pulse | |
| a <- rCharts:::Highcharts$new() | |
| a$chart(type = "scatter") | |
| male <- data[data$Sex == "Male", ] | |
| a$series(data = toJSONArray2(male, json = F), name = "Female") | |
| female <- data[data$Sex == "Female", ] | |
| a$series(data = toJSONArray2(female, json = F), name = "Male") | |
| a$tooltip(useHTML = T, formatter = "#! function() { return 'Age: ' + this.point.Age; } !#") | |
| a | |
| </code></pre> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <script type='text/javascript'> | |
| (function($){ | |
| $(function () { | |
| var chart = new Highcharts.Chart({ | |
| "dom": "chart968a2fe38abd", | |
| "width": 800, | |
| "height": 400, | |
| "credits": { | |
| "href": null, | |
| "text": null | |
| }, | |
| "title": { | |
| "text": null | |
| }, | |
| "yAxis": { | |
| "title": { | |
| "text": null | |
| } | |
| }, | |
| "chart": { | |
| "type": "scatter", | |
| "renderTo": "chart968a2fe38abd" | |
| }, | |
| "series": [ | |
| { | |
| "data": [ | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 19.5, | |
| "NW.Hnd": 20.5, | |
| "W.Hnd": "Left", | |
| "Fold": "R on L", | |
| "Pulse": 104, | |
| "Clap": "Left", | |
| "Exer": "None", | |
| "Smoke": "Regul", | |
| "Height": 177.8, | |
| "M.I": "Imperial", | |
| "Age": 17.583, | |
| "x": 177.8, | |
| "y": 104 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20, | |
| "NW.Hnd": 20, | |
| "W.Hnd": "Right", | |
| "Fold": "Neither", | |
| "Pulse": 35, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 165, | |
| "M.I": "Metric", | |
| "Age": 23.667, | |
| "x": 165, | |
| "y": 35 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 17.7, | |
| "NW.Hnd": 17.7, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 83, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 182.88, | |
| "M.I": "Imperial", | |
| "Age": 18.833, | |
| "x": 182.88, | |
| "y": 83 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20, | |
| "NW.Hnd": 19.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 72, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 175, | |
| "M.I": "Metric", | |
| "Age": 19, | |
| "x": 175, | |
| "y": 72 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18.5, | |
| "NW.Hnd": 18.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 90, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 167, | |
| "M.I": "Metric", | |
| "Age": 22.333, | |
| "x": 167, | |
| "y": 90 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 19.4, | |
| "NW.Hnd": 19.2, | |
| "W.Hnd": "Left", | |
| "Fold": "R on L", | |
| "Pulse": 74, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 182.88, | |
| "M.I": "Imperial", | |
| "Age": 18.333, | |
| "x": 182.88, | |
| "y": 74 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 21, | |
| "NW.Hnd": 20.9, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 78, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 177, | |
| "M.I": "Metric", | |
| "Age": 17.917, | |
| "x": 177, | |
| "y": 78 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 21.5, | |
| "NW.Hnd": 22, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 72, | |
| "Clap": "Left", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 190.5, | |
| "M.I": "Imperial", | |
| "Age": 17.917, | |
| "x": 190.5, | |
| "y": 72 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20.1, | |
| "NW.Hnd": 20.7, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 72, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 180.34, | |
| "M.I": "Imperial", | |
| "Age": 18.167, | |
| "x": 180.34, | |
| "y": 72 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18.5, | |
| "NW.Hnd": 18, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 64, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 180.34, | |
| "M.I": "Imperial", | |
| "Age": 17.833, | |
| "x": 180.34, | |
| "y": 64 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 21.5, | |
| "NW.Hnd": 21.2, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 62, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 184, | |
| "M.I": "Metric", | |
| "Age": 18.25, | |
| "x": 184, | |
| "y": 62 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 21, | |
| "NW.Hnd": 20.7, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 90, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 172.72, | |
| "M.I": "Imperial", | |
| "Age": 17.5, | |
| "x": 172.72, | |
| "y": 90 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20.8, | |
| "NW.Hnd": 21.4, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 62, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 175.26, | |
| "M.I": "Imperial", | |
| "Age": 18.083, | |
| "x": 175.26, | |
| "y": 62 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 19.5, | |
| "NW.Hnd": 19.5, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 79, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 167, | |
| "M.I": "Metric", | |
| "Age": 19.25, | |
| "x": 167, | |
| "y": 79 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18.8, | |
| "NW.Hnd": 18.2, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 78, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 180, | |
| "M.I": "Metric", | |
| "Age": 17.5, | |
| "x": 180, | |
| "y": 78 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20.1, | |
| "NW.Hnd": 20, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 70, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 180, | |
| "M.I": "Metric", | |
| "Age": 17.167, | |
| "x": 180, | |
| "y": 70 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 22.2, | |
| "NW.Hnd": 21, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 66, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Occas", | |
| "Height": 190, | |
| "M.I": "Metric", | |
| "Age": 18, | |
| "x": 190, | |
| "y": 66 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 19.4, | |
| "NW.Hnd": 18.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 72, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 182.5, | |
| "M.I": "Metric", | |
| "Age": 17.917, | |
| "x": 182.5, | |
| "y": 72 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 22, | |
| "NW.Hnd": 22, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 80, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 185, | |
| "M.I": "Metric", | |
| "Age": 35.5, | |
| "x": 185, | |
| "y": 80 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 23.2, | |
| "NW.Hnd": 22.7, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 84, | |
| "Clap": "Left", | |
| "Exer": "Freq", | |
| "Smoke": "Regul", | |
| "Height": 180, | |
| "M.I": "Metric", | |
| "Age": 18.917, | |
| "x": 180, | |
| "y": 84 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 22.5, | |
| "NW.Hnd": 23, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 96, | |
| "Clap": "Right", | |
| "Exer": "None", | |
| "Smoke": "Never", | |
| "Height": 170, | |
| "M.I": "Metric", | |
| "Age": 19.417, | |
| "x": 170, | |
| "y": 96 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 22, | |
| "NW.Hnd": 21.5, | |
| "W.Hnd": "Left", | |
| "Fold": "R on L", | |
| "Pulse": 55, | |
| "Clap": "Left", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 200, | |
| "M.I": "Metric", | |
| "Age": 18.5, | |
| "x": 200, | |
| "y": 55 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20.5, | |
| "NW.Hnd": 20, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 68, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 190, | |
| "M.I": "Metric", | |
| "Age": 17.5, | |
| "x": 190, | |
| "y": 68 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 17, | |
| "NW.Hnd": 18, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 78, | |
| "Clap": "Left", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 170.18, | |
| "M.I": "Imperial", | |
| "Age": 18.333, | |
| "x": 170.18, | |
| "y": 78 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20.5, | |
| "NW.Hnd": 19.5, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 56, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 179, | |
| "M.I": "Metric", | |
| "Age": 17.417, | |
| "x": 179, | |
| "y": 56 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 22.5, | |
| "NW.Hnd": 22.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 65, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Regul", | |
| "Height": 182, | |
| "M.I": "Metric", | |
| "Age": 20, | |
| "x": 182, | |
| "y": 65 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 19.5, | |
| "NW.Hnd": 19, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 62, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 177.8, | |
| "M.I": "Imperial", | |
| "Age": 17.667, | |
| "x": 177.8, | |
| "y": 62 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 22.8, | |
| "NW.Hnd": 23.2, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 66, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 187, | |
| "M.I": "Metric", | |
| "Age": 20.333, | |
| "x": 187, | |
| "y": 66 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 19.2, | |
| "NW.Hnd": 18.9, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 76, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 176.5, | |
| "M.I": "Imperial", | |
| "Age": 20.167, | |
| "x": 176.5, | |
| "y": 76 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 23, | |
| "NW.Hnd": 23.5, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 90, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 167.64, | |
| "M.I": "Imperial", | |
| "Age": 17.167, | |
| "x": 167.64, | |
| "y": 90 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18, | |
| "NW.Hnd": 18, | |
| "W.Hnd": "Right", | |
| "Fold": "Neither", | |
| "Pulse": 60, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 179, | |
| "M.I": "Metric", | |
| "Age": 21.583, | |
| "x": 179, | |
| "y": 60 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20.5, | |
| "NW.Hnd": 20, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 75, | |
| "Clap": "Left", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 183, | |
| "M.I": "Metric", | |
| "Age": 19.667, | |
| "x": 183, | |
| "y": 75 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 21.3, | |
| "NW.Hnd": 20.8, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 65, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Heavy", | |
| "Height": 179, | |
| "M.I": "Metric", | |
| "Age": 22.833, | |
| "x": 179, | |
| "y": 65 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20, | |
| "NW.Hnd": 19.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 68, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Regul", | |
| "Height": 190, | |
| "M.I": "Metric", | |
| "Age": 19.417, | |
| "x": 190, | |
| "y": 68 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18.9, | |
| "NW.Hnd": 19.1, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 60, | |
| "Clap": "Neither", | |
| "Exer": "None", | |
| "Smoke": "Never", | |
| "Height": 170, | |
| "M.I": "Metric", | |
| "Age": 17.75, | |
| "x": 170, | |
| "y": 60 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 17.5, | |
| "NW.Hnd": 17.5, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 64, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 180, | |
| "M.I": "Metric", | |
| "Age": 18.583, | |
| "x": 180, | |
| "y": 64 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 19.7, | |
| "NW.Hnd": 20.1, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 67, | |
| "Clap": "Left", | |
| "Exer": "Some", | |
| "Smoke": "Regul", | |
| "Height": 180.34, | |
| "M.I": "Imperial", | |
| "Age": 17.75, | |
| "x": 180.34, | |
| "y": 67 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 19.2, | |
| "NW.Hnd": 19.6, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 80, | |
| "Clap": "Right", | |
| "Exer": "None", | |
| "Smoke": "Never", | |
| "Height": 190.5, | |
| "M.I": "Imperial", | |
| "Age": 18.167, | |
| "x": 190.5, | |
| "y": 80 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20.5, | |
| "NW.Hnd": 21, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 60, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 185, | |
| "M.I": "Metric", | |
| "Age": 17.917, | |
| "x": 185, | |
| "y": 60 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 23, | |
| "NW.Hnd": 22, | |
| "W.Hnd": "Left", | |
| "Fold": "L on R", | |
| "Pulse": 83, | |
| "Clap": "Left", | |
| "Exer": "Some", | |
| "Smoke": "Heavy", | |
| "Height": 193.04, | |
| "M.I": "Imperial", | |
| "Age": 18.917, | |
| "x": 193.04, | |
| "y": 83 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 21, | |
| "NW.Hnd": 20.4, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 100, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Heavy", | |
| "Height": 184, | |
| "M.I": "Metric", | |
| "Age": 20.083, | |
| "x": 184, | |
| "y": 100 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 22.5, | |
| "NW.Hnd": 22.5, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 76, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Occas", | |
| "Height": 177, | |
| "M.I": "Metric", | |
| "Age": 18.25, | |
| "x": 177, | |
| "y": 76 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 19.8, | |
| "NW.Hnd": 20, | |
| "W.Hnd": "Left", | |
| "Fold": "L on R", | |
| "Pulse": 59, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 180, | |
| "M.I": "Metric", | |
| "Age": 17.417, | |
| "x": 180, | |
| "y": 59 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18.5, | |
| "NW.Hnd": 18.1, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 66, | |
| "Clap": "Left", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 175.26, | |
| "M.I": "Imperial", | |
| "Age": 21, | |
| "x": 175.26, | |
| "y": 66 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18.8, | |
| "NW.Hnd": 19.1, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 66, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Regul", | |
| "Height": 178.5, | |
| "M.I": "Metric", | |
| "Age": 18.083, | |
| "x": 178.5, | |
| "y": 66 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 22, | |
| "NW.Hnd": 21.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 86, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 187.96, | |
| "M.I": "Imperial", | |
| "Age": 20, | |
| "x": 187.96, | |
| "y": 86 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 19, | |
| "NW.Hnd": 19.5, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 60, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 178, | |
| "M.I": "Metric", | |
| "Age": 18.75, | |
| "x": 178, | |
| "y": 60 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 17.9, | |
| "NW.Hnd": 17.8, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 85, | |
| "Clap": "Left", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 175.26, | |
| "M.I": "Imperial", | |
| "Age": 18.417, | |
| "x": 175.26, | |
| "y": 85 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 23.1, | |
| "NW.Hnd": 22.5, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 90, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Regul", | |
| "Height": 189, | |
| "M.I": "Metric", | |
| "Age": 19.167, | |
| "x": 189, | |
| "y": 90 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 22, | |
| "NW.Hnd": 22, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 72, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 182.88, | |
| "M.I": "Imperial", | |
| "Age": 19.333, | |
| "x": 182.88, | |
| "y": 72 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 21.4, | |
| "NW.Hnd": 21, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 96, | |
| "Clap": "Neither", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 180, | |
| "M.I": "Metric", | |
| "Age": 19, | |
| "x": 180, | |
| "y": 96 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18.5, | |
| "NW.Hnd": 18.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 75, | |
| "Clap": "Neither", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 185, | |
| "M.I": "Metric", | |
| "Age": 19, | |
| "x": 185, | |
| "y": 75 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 22.5, | |
| "NW.Hnd": 22.6, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 64, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Regul", | |
| "Height": 187.96, | |
| "M.I": "Imperial", | |
| "Age": 23, | |
| "x": 187.96, | |
| "y": 64 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 19.5, | |
| "NW.Hnd": 20.2, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 60, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 185.42, | |
| "M.I": "Imperial", | |
| "Age": 32.667, | |
| "x": 185.42, | |
| "y": 60 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 21.8, | |
| "NW.Hnd": 22.3, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 76, | |
| "Clap": "Left", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 195, | |
| "M.I": "Metric", | |
| "Age": 25.5, | |
| "x": 195, | |
| "y": 76 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 21.5, | |
| "NW.Hnd": 21.6, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 69, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 172.72, | |
| "M.I": "Imperial", | |
| "Age": 70.417, | |
| "x": 172.72, | |
| "y": 69 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18.9, | |
| "NW.Hnd": 19.1, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 68, | |
| "Clap": "Right", | |
| "Exer": "None", | |
| "Smoke": "Never", | |
| "Height": 180.34, | |
| "M.I": "Imperial", | |
| "Age": 43.833, | |
| "x": 180.34, | |
| "y": 68 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20.5, | |
| "NW.Hnd": 20, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 76, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 173, | |
| "M.I": "Metric", | |
| "Age": 23.583, | |
| "x": 173, | |
| "y": 76 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18.5, | |
| "NW.Hnd": 19, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 84, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Regul", | |
| "Height": 187, | |
| "M.I": "Metric", | |
| "Age": 17.917, | |
| "x": 187, | |
| "y": 84 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20.2, | |
| "NW.Hnd": 20.3, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 72, | |
| "Clap": "Neither", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 191.8, | |
| "M.I": "Imperial", | |
| "Age": 17.5, | |
| "x": 191.8, | |
| "y": 72 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 19, | |
| "NW.Hnd": 18.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 72, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 180.34, | |
| "M.I": "Imperial", | |
| "Age": 17.333, | |
| "x": 180.34, | |
| "y": 72 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20.5, | |
| "NW.Hnd": 19.5, | |
| "W.Hnd": "Left", | |
| "Fold": "L on R", | |
| "Pulse": 80, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Occas", | |
| "Height": 182.88, | |
| "M.I": "Imperial", | |
| "Age": 18.667, | |
| "x": 182.88, | |
| "y": 80 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20.5, | |
| "NW.Hnd": 20.5, | |
| "W.Hnd": "Right", | |
| "Fold": "Neither", | |
| "Pulse": 76, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Regul", | |
| "Height": 172.72, | |
| "M.I": "Imperial", | |
| "Age": 36.583, | |
| "x": 172.72, | |
| "y": 76 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 19, | |
| "NW.Hnd": 19.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 68, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Occas", | |
| "Height": 172, | |
| "M.I": "Metric", | |
| "Age": 23.417, | |
| "x": 172, | |
| "y": 68 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18.5, | |
| "NW.Hnd": 19, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 70, | |
| "Clap": "Left", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 170, | |
| "M.I": "Metric", | |
| "Age": 23.833, | |
| "x": 170, | |
| "y": 70 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18, | |
| "NW.Hnd": 18.5, | |
| "W.Hnd": "Right", | |
| "Fold": "Neither", | |
| "Pulse": 90, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 175, | |
| "M.I": "Metric", | |
| "Age": 18.75, | |
| "x": 175, | |
| "y": 90 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20.5, | |
| "NW.Hnd": 20.7, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 72, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 168, | |
| "M.I": "Metric", | |
| "Age": 21.167, | |
| "x": 168, | |
| "y": 72 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18.5, | |
| "NW.Hnd": 18.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 65, | |
| "Clap": "Right", | |
| "Exer": "None", | |
| "Smoke": "Never", | |
| "Height": 165, | |
| "M.I": "Metric", | |
| "Age": 18.5, | |
| "x": 165, | |
| "y": 65 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18, | |
| "NW.Hnd": 18.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 62, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 173, | |
| "M.I": "Metric", | |
| "Age": 20.333, | |
| "x": 173, | |
| "y": 62 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18.5, | |
| "NW.Hnd": 18, | |
| "W.Hnd": "Right", | |
| "Fold": "Neither", | |
| "Pulse": 63, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 196, | |
| "M.I": "Metric", | |
| "Age": 20.083, | |
| "x": 196, | |
| "y": 63 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20, | |
| "NW.Hnd": 19.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 92, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 179.1, | |
| "M.I": "Imperial", | |
| "Age": 18.917, | |
| "x": 179.1, | |
| "y": 92 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 22, | |
| "NW.Hnd": 22.5, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 60, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 180, | |
| "M.I": "Metric", | |
| "Age": 27.333, | |
| "x": 180, | |
| "y": 60 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 17.9, | |
| "NW.Hnd": 18.4, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 68, | |
| "Clap": "Left", | |
| "Exer": "None", | |
| "Smoke": "Occas", | |
| "Height": 176, | |
| "M.I": "Metric", | |
| "Age": 18.917, | |
| "x": 176, | |
| "y": 68 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 16, | |
| "NW.Hnd": 15.5, | |
| "W.Hnd": "Right", | |
| "Fold": "Neither", | |
| "Pulse": 71, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 154.94, | |
| "M.I": "Imperial", | |
| "Age": 17.167, | |
| "x": 154.94, | |
| "y": 71 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 21, | |
| "NW.Hnd": 21, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 48, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 174, | |
| "M.I": "Metric", | |
| "Age": 21.333, | |
| "x": 174, | |
| "y": 48 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 17, | |
| "NW.Hnd": 17.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 80, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Regul", | |
| "Height": 179.1, | |
| "M.I": "Metric", | |
| "Age": 18.667, | |
| "x": 179.1, | |
| "y": 80 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 17.5, | |
| "NW.Hnd": 17.6, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 84, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 160, | |
| "M.I": "Metric", | |
| "Age": 18.583, | |
| "x": 160, | |
| "y": 84 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 17.5, | |
| "NW.Hnd": 17, | |
| "W.Hnd": "Left", | |
| "Fold": "L on R", | |
| "Pulse": 97, | |
| "Clap": "Neither", | |
| "Exer": "None", | |
| "Smoke": "Never", | |
| "Height": 165, | |
| "M.I": "Metric", | |
| "Age": 19.5, | |
| "x": 165, | |
| "y": 97 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 17, | |
| "NW.Hnd": 17.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 65, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 165, | |
| "M.I": "Metric", | |
| "Age": 20.417, | |
| "x": 165, | |
| "y": 65 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18.2, | |
| "NW.Hnd": 19.8, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 88, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 185, | |
| "M.I": "Metric", | |
| "Age": 19.333, | |
| "x": 185, | |
| "y": 88 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 23.2, | |
| "NW.Hnd": 23.2, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 75, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 188, | |
| "M.I": "Metric", | |
| "Age": 18.917, | |
| "x": 188, | |
| "y": 75 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 20, | |
| "NW.Hnd": 19.8, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 68, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 185, | |
| "M.I": "Metric", | |
| "Age": 17.417, | |
| "x": 185, | |
| "y": 68 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 18.6, | |
| "NW.Hnd": 19.6, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 71, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Occas", | |
| "Height": 185, | |
| "M.I": "Metric", | |
| "Age": 19.333, | |
| "x": 185, | |
| "y": 71 | |
| }, | |
| { | |
| "Sex": "Male", | |
| "Wr.Hnd": 21, | |
| "NW.Hnd": 21.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 90, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 183, | |
| "M.I": "Metric", | |
| "Age": 17.167, | |
| "x": 183, | |
| "y": 90 | |
| } | |
| ], | |
| "name": "Female" | |
| }, | |
| { | |
| "data": [ | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18.5, | |
| "NW.Hnd": 18, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 92, | |
| "Clap": "Left", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 173, | |
| "M.I": "Metric", | |
| "Age": 18.25, | |
| "x": 173, | |
| "y": 92 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18, | |
| "NW.Hnd": 17.7, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 64, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 172.72, | |
| "M.I": "Imperial", | |
| "Age": 21, | |
| "x": 172.72, | |
| "y": 64 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17, | |
| "NW.Hnd": 17.3, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 74, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 157, | |
| "M.I": "Metric", | |
| "Age": 35.833, | |
| "x": 157, | |
| "y": 74 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17, | |
| "NW.Hnd": 17.2, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 80, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 156.2, | |
| "M.I": "Imperial", | |
| "Age": 28.5, | |
| "x": 156.2, | |
| "y": 80 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 19.5, | |
| "NW.Hnd": 20.2, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 66, | |
| "Clap": "Neither", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 155, | |
| "M.I": "Metric", | |
| "Age": 17.5, | |
| "x": 155, | |
| "y": 66 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18, | |
| "NW.Hnd": 18, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 89, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 157, | |
| "M.I": "Metric", | |
| "Age": 19.333, | |
| "x": 157, | |
| "y": 89 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.1, | |
| "NW.Hnd": 17.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 72, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Heavy", | |
| "Height": 166.4, | |
| "M.I": "Imperial", | |
| "Age": 39.75, | |
| "x": 166.4, | |
| "y": 72 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.8, | |
| "NW.Hnd": 18, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 72, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 154.94, | |
| "M.I": "Imperial", | |
| "Age": 17.083, | |
| "x": 154.94, | |
| "y": 72 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 20.1, | |
| "NW.Hnd": 20.2, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 80, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 176.5, | |
| "M.I": "Imperial", | |
| "Age": 17.5, | |
| "x": 176.5, | |
| "y": 80 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18, | |
| "NW.Hnd": 17.6, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 60, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Occas", | |
| "Height": 168, | |
| "M.I": "Metric", | |
| "Age": 18.417, | |
| "x": 168, | |
| "y": 60 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18, | |
| "NW.Hnd": 17.9, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 50, | |
| "Clap": "Left", | |
| "Exer": "None", | |
| "Smoke": "Never", | |
| "Height": 165, | |
| "M.I": "Metric", | |
| "Age": 30.75, | |
| "x": 165, | |
| "y": 50 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 15.5, | |
| "NW.Hnd": 15.4, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 70, | |
| "Clap": "Neither", | |
| "Exer": "None", | |
| "Smoke": "Never", | |
| "Height": 157.48, | |
| "M.I": "Imperial", | |
| "Age": 17.167, | |
| "x": 157.48, | |
| "y": 70 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18.5, | |
| "NW.Hnd": 18.2, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 72, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 167.64, | |
| "M.I": "Imperial", | |
| "Age": 17.333, | |
| "x": 167.64, | |
| "y": 72 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 19.6, | |
| "NW.Hnd": 19.7, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 70, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 178, | |
| "M.I": "Metric", | |
| "Age": 17.5, | |
| "x": 178, | |
| "y": 70 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.3, | |
| "NW.Hnd": 18, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 64, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 164, | |
| "M.I": "Metric", | |
| "Age": 18.583, | |
| "x": 164, | |
| "y": 64 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18, | |
| "NW.Hnd": 17.5, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 64, | |
| "Clap": "Left", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 170, | |
| "M.I": "Metric", | |
| "Age": 17.583, | |
| "x": 170, | |
| "y": 64 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17, | |
| "NW.Hnd": 16.6, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 68, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 171, | |
| "M.I": "Metric", | |
| "Age": 17.667, | |
| "x": 171, | |
| "y": 68 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 16.5, | |
| "NW.Hnd": 17, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 40, | |
| "Clap": "Left", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 167.64, | |
| "M.I": "Imperial", | |
| "Age": 17.417, | |
| "x": 167.64, | |
| "y": 40 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 15.6, | |
| "NW.Hnd": 15.8, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 88, | |
| "Clap": "Left", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 165, | |
| "M.I": "Metric", | |
| "Age": 17.75, | |
| "x": 165, | |
| "y": 88 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.5, | |
| "NW.Hnd": 17.5, | |
| "W.Hnd": "Right", | |
| "Fold": "Neither", | |
| "Pulse": 68, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Heavy", | |
| "Height": 170, | |
| "M.I": "Metric", | |
| "Age": 20.667, | |
| "x": 170, | |
| "y": 68 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17, | |
| "NW.Hnd": 17.6, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 76, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 165, | |
| "M.I": "Metric", | |
| "Age": 23.583, | |
| "x": 165, | |
| "y": 76 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18.3, | |
| "NW.Hnd": 18.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 68, | |
| "Clap": "Neither", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 165.1, | |
| "M.I": "Imperial", | |
| "Age": 17.083, | |
| "x": 165.1, | |
| "y": 68 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.7, | |
| "NW.Hnd": 17, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 76, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 167, | |
| "M.I": "Metric", | |
| "Age": 17.25, | |
| "x": 167, | |
| "y": 76 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18.2, | |
| "NW.Hnd": 18, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 70, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 162.56, | |
| "M.I": "Imperial", | |
| "Age": 18, | |
| "x": 162.56, | |
| "y": 70 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18.3, | |
| "NW.Hnd": 18.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 75, | |
| "Clap": "Left", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 170, | |
| "M.I": "Metric", | |
| "Age": 18.75, | |
| "x": 170, | |
| "y": 75 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18.2, | |
| "NW.Hnd": 17.5, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 70, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 165, | |
| "M.I": "Metric", | |
| "Age": 19.667, | |
| "x": 165, | |
| "y": 70 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.5, | |
| "NW.Hnd": 17.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 60, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 166.5, | |
| "M.I": "Metric", | |
| "Age": 23.25, | |
| "x": 166.5, | |
| "y": 60 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 19.4, | |
| "NW.Hnd": 19.6, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 68, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 175.26, | |
| "M.I": "Imperial", | |
| "Age": 19.083, | |
| "x": 175.26, | |
| "y": 68 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.5, | |
| "NW.Hnd": 17.3, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 72, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 175, | |
| "M.I": "Metric", | |
| "Age": 20.167, | |
| "x": 175, | |
| "y": 72 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.5, | |
| "NW.Hnd": 17, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 80, | |
| "Clap": "Left", | |
| "Exer": "Some", | |
| "Smoke": "Heavy", | |
| "Height": 163, | |
| "M.I": "Metric", | |
| "Age": 17.667, | |
| "x": 163, | |
| "y": 80 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 19.5, | |
| "NW.Hnd": 18.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 80, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 170, | |
| "M.I": "Metric", | |
| "Age": 18.25, | |
| "x": 170, | |
| "y": 80 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18.5, | |
| "NW.Hnd": 18.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 76, | |
| "Clap": "Left", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 175, | |
| "M.I": "Metric", | |
| "Age": 24.167, | |
| "x": 175, | |
| "y": 76 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.2, | |
| "NW.Hnd": 16.7, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 75, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 170.18, | |
| "M.I": "Imperial", | |
| "Age": 21.167, | |
| "x": 170.18, | |
| "y": 75 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 16, | |
| "NW.Hnd": 15.5, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 60, | |
| "Clap": "Left", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 162.56, | |
| "M.I": "Imperial", | |
| "Age": 17.417, | |
| "x": 162.56, | |
| "y": 60 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 16.9, | |
| "NW.Hnd": 16, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 70, | |
| "Clap": "Right", | |
| "Exer": "None", | |
| "Smoke": "Never", | |
| "Height": 158, | |
| "M.I": "Metric", | |
| "Age": 20.5, | |
| "x": 158, | |
| "y": 70 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17, | |
| "NW.Hnd": 16.7, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 70, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 159, | |
| "M.I": "Metric", | |
| "Age": 22.917, | |
| "x": 159, | |
| "y": 70 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18.5, | |
| "NW.Hnd": 18, | |
| "W.Hnd": "Left", | |
| "Fold": "L on R", | |
| "Pulse": 100, | |
| "Clap": "Neither", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 171, | |
| "M.I": "Metric", | |
| "Age": 18.917, | |
| "x": 171, | |
| "y": 100 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18.5, | |
| "NW.Hnd": 18, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 92, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 172, | |
| "M.I": "Metric", | |
| "Age": 17.5, | |
| "x": 172, | |
| "y": 92 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 16, | |
| "NW.Hnd": 16, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 68, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 172.72, | |
| "M.I": "Imperial", | |
| "Age": 17.667, | |
| "x": 172.72, | |
| "y": 68 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.5, | |
| "NW.Hnd": 17, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 74, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 157, | |
| "M.I": "Metric", | |
| "Age": 18, | |
| "x": 157, | |
| "y": 74 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 16.4, | |
| "NW.Hnd": 16.5, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 90, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 152, | |
| "M.I": "Metric", | |
| "Age": 18.333, | |
| "x": 152, | |
| "y": 90 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 15.4, | |
| "NW.Hnd": 16.4, | |
| "W.Hnd": "Left", | |
| "Fold": "L on R", | |
| "Pulse": 80, | |
| "Clap": "Left", | |
| "Exer": "Freq", | |
| "Smoke": "Occas", | |
| "Height": 160.02, | |
| "M.I": "Imperial", | |
| "Age": 18.5, | |
| "x": 160.02, | |
| "y": 80 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 19.5, | |
| "NW.Hnd": 18.5, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 68, | |
| "Clap": "Right", | |
| "Exer": "None", | |
| "Smoke": "Never", | |
| "Height": 167, | |
| "M.I": "Metric", | |
| "Age": 18.667, | |
| "x": 167, | |
| "y": 68 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18, | |
| "NW.Hnd": 18.6, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 84, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 175, | |
| "M.I": "Metric", | |
| "Age": 17.5, | |
| "x": 175, | |
| "y": 84 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 19, | |
| "NW.Hnd": 18.8, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 65, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 172.72, | |
| "M.I": "Imperial", | |
| "Age": 17.25, | |
| "x": 172.72, | |
| "y": 65 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 20, | |
| "NW.Hnd": 19.5, | |
| "W.Hnd": "Left", | |
| "Fold": "R on L", | |
| "Pulse": 68, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 172, | |
| "M.I": "Metric", | |
| "Age": 19.167, | |
| "x": 172, | |
| "y": 68 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18, | |
| "NW.Hnd": 18, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 92, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 165, | |
| "M.I": "Metric", | |
| "Age": 20, | |
| "x": 165, | |
| "y": 92 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18, | |
| "NW.Hnd": 18.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 64, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 164, | |
| "M.I": "Metric", | |
| "Age": 20.167, | |
| "x": 164, | |
| "y": 64 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 13, | |
| "NW.Hnd": 12.5, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 80, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 165, | |
| "M.I": "Metric", | |
| "Age": 18.167, | |
| "x": 165, | |
| "y": 80 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 16.3, | |
| "NW.Hnd": 16.2, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 92, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Regul", | |
| "Height": 152.4, | |
| "M.I": "Imperial", | |
| "Age": 23.5, | |
| "x": 152.4, | |
| "y": 92 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18.9, | |
| "NW.Hnd": 19.2, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 74, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 167.64, | |
| "M.I": "Imperial", | |
| "Age": 44.25, | |
| "x": 167.64, | |
| "y": 74 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.5, | |
| "NW.Hnd": 17.1, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 80, | |
| "Clap": "Left", | |
| "Exer": "None", | |
| "Smoke": "Never", | |
| "Height": 167, | |
| "M.I": "Metric", | |
| "Age": 18.417, | |
| "x": 167, | |
| "y": 80 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 16.5, | |
| "NW.Hnd": 16.9, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 60, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Occas", | |
| "Height": 169.2, | |
| "M.I": "Metric", | |
| "Age": 29.083, | |
| "x": 169.2, | |
| "y": 60 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.6, | |
| "NW.Hnd": 17.2, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 81, | |
| "Clap": "Left", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 168, | |
| "M.I": "Metric", | |
| "Age": 18.5, | |
| "x": 168, | |
| "y": 81 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 19.5, | |
| "NW.Hnd": 19.2, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 70, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 170, | |
| "M.I": "Metric", | |
| "Age": 18.167, | |
| "x": 170, | |
| "y": 70 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 16.5, | |
| "NW.Hnd": 15, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 65, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Regul", | |
| "Height": 160.02, | |
| "M.I": "Imperial", | |
| "Age": 32.75, | |
| "x": 160.02, | |
| "y": 65 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18, | |
| "NW.Hnd": 17.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 48, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 165, | |
| "M.I": "Metric", | |
| "Age": 18.667, | |
| "x": 165, | |
| "y": 48 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.5, | |
| "NW.Hnd": 18, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 68, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 157.48, | |
| "M.I": "Imperial", | |
| "Age": 17.75, | |
| "x": 157.48, | |
| "y": 68 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 19, | |
| "NW.Hnd": 18.5, | |
| "W.Hnd": "Left", | |
| "Fold": "L on R", | |
| "Pulse": 104, | |
| "Clap": "Left", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 170, | |
| "M.I": "Metric", | |
| "Age": 17.25, | |
| "x": 170, | |
| "y": 104 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 16.7, | |
| "NW.Hnd": 17, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 84, | |
| "Clap": "Left", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 164, | |
| "M.I": "Metric", | |
| "Age": 23.083, | |
| "x": 164, | |
| "y": 84 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17, | |
| "NW.Hnd": 16.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 70, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 162.56, | |
| "M.I": "Imperial", | |
| "Age": 17.167, | |
| "x": 162.56, | |
| "y": 70 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 14, | |
| "NW.Hnd": 13.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 87, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Occas", | |
| "Height": 165.1, | |
| "M.I": "Imperial", | |
| "Age": 17.083, | |
| "x": 165.1, | |
| "y": 87 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.5, | |
| "NW.Hnd": 17.6, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 79, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 162.5, | |
| "M.I": "Metric", | |
| "Age": 17.25, | |
| "x": 162.5, | |
| "y": 79 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17, | |
| "NW.Hnd": 17, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 79, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 163, | |
| "M.I": "Metric", | |
| "Age": 24.667, | |
| "x": 163, | |
| "y": 79 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.6, | |
| "NW.Hnd": 17.8, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 72, | |
| "Clap": "Left", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 160.02, | |
| "M.I": "Imperial", | |
| "Age": 17.25, | |
| "x": 160.02, | |
| "y": 72 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17, | |
| "NW.Hnd": 17.6, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 76, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 165, | |
| "M.I": "Metric", | |
| "Age": 26.5, | |
| "x": 165, | |
| "y": 76 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 15, | |
| "NW.Hnd": 13, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 80, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 170.18, | |
| "M.I": "Imperial", | |
| "Age": 17, | |
| "x": 170.18, | |
| "y": 80 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 19.1, | |
| "NW.Hnd": 19, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 80, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Occas", | |
| "Height": 170, | |
| "M.I": "Metric", | |
| "Age": 19.167, | |
| "x": 170, | |
| "y": 80 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.5, | |
| "NW.Hnd": 16.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 80, | |
| "Clap": "Neither", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 164, | |
| "M.I": "Metric", | |
| "Age": 17.5, | |
| "x": 164, | |
| "y": 80 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 16.2, | |
| "NW.Hnd": 15.8, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 61, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Occas", | |
| "Height": 167, | |
| "M.I": "Metric", | |
| "Age": 19.25, | |
| "x": 167, | |
| "y": 61 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18.5, | |
| "NW.Hnd": 18, | |
| "W.Hnd": "Right", | |
| "Fold": "Neither", | |
| "Pulse": 86, | |
| "Clap": "Right", | |
| "Exer": "None", | |
| "Smoke": "Never", | |
| "Height": 160, | |
| "M.I": "Metric", | |
| "Age": 20.167, | |
| "x": 160, | |
| "y": 86 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.5, | |
| "NW.Hnd": 17, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 83, | |
| "Clap": "Neither", | |
| "Exer": "Freq", | |
| "Smoke": "Occas", | |
| "Height": 168, | |
| "M.I": "Metric", | |
| "Age": 17.083, | |
| "x": 168, | |
| "y": 83 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.5, | |
| "NW.Hnd": 17.6, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 76, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 153.5, | |
| "M.I": "Metric", | |
| "Age": 17.417, | |
| "x": 153.5, | |
| "y": 76 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18.6, | |
| "NW.Hnd": 18.6, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 74, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 160, | |
| "M.I": "Metric", | |
| "Age": 17.167, | |
| "x": 160, | |
| "y": 74 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.5, | |
| "NW.Hnd": 17.5, | |
| "W.Hnd": "Left", | |
| "Fold": "R on L", | |
| "Pulse": 83, | |
| "Clap": "Neither", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 163, | |
| "M.I": "Metric", | |
| "Age": 17.25, | |
| "x": 163, | |
| "y": 83 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18, | |
| "NW.Hnd": 17.8, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 68, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 168.9, | |
| "M.I": "Imperial", | |
| "Age": 17.083, | |
| "x": 168.9, | |
| "y": 68 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 15.9, | |
| "NW.Hnd": 16.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 70, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 167.64, | |
| "M.I": "Imperial", | |
| "Age": 17.333, | |
| "x": 167.64, | |
| "y": 70 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.5, | |
| "NW.Hnd": 18.4, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 88, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 162.56, | |
| "M.I": "Imperial", | |
| "Age": 18.167, | |
| "x": 162.56, | |
| "y": 88 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18.8, | |
| "NW.Hnd": 18.3, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 80, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Heavy", | |
| "Height": 170.18, | |
| "M.I": "Imperial", | |
| "Age": 18.417, | |
| "x": 170.18, | |
| "y": 80 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18.6, | |
| "NW.Hnd": 18.8, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 70, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Regul", | |
| "Height": 167, | |
| "M.I": "Metric", | |
| "Age": 20.333, | |
| "x": 167, | |
| "y": 70 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18.8, | |
| "NW.Hnd": 18.5, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 80, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 169, | |
| "M.I": "Metric", | |
| "Age": 18.167, | |
| "x": 169, | |
| "y": 80 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18, | |
| "NW.Hnd": 18, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 85, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 165.1, | |
| "M.I": "Imperial", | |
| "Age": 17.667, | |
| "x": 165.1, | |
| "y": 85 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 18.5, | |
| "NW.Hnd": 18, | |
| "W.Hnd": "Right", | |
| "Fold": "L on R", | |
| "Pulse": 88, | |
| "Clap": "Right", | |
| "Exer": "Some", | |
| "Smoke": "Never", | |
| "Height": 160, | |
| "M.I": "Metric", | |
| "Age": 16.917, | |
| "x": 160, | |
| "y": 88 | |
| }, | |
| { | |
| "Sex": "Female", | |
| "Wr.Hnd": 17.6, | |
| "NW.Hnd": 17.3, | |
| "W.Hnd": "Right", | |
| "Fold": "R on L", | |
| "Pulse": 85, | |
| "Clap": "Right", | |
| "Exer": "Freq", | |
| "Smoke": "Never", | |
| "Height": 168.5, | |
| "M.I": "Metric", | |
| "Age": 17.75, | |
| "x": 168.5, | |
| "y": 85 | |
| } | |
| ], | |
| "name": "Male" | |
| } | |
| ], | |
| "tooltip": { | |
| "useHTML": true, | |
| "formatter": function() { return 'Age: ' + this.point.Age; } | |
| }, | |
| "id": "chart968a2fe38abd" | |
| }); | |
| }); | |
| })(jQuery); | |
| </script> | |
| </body> | |
| <!-- Google Prettify --> | |
| <script src="http://cdnjs.cloudflare.com/ajax/libs/prettify/188.0.0/prettify.js"></script> | |
| <script | |
| src='https://google-code-prettify.googlecode.com/svn-history/r232/trunk/src/lang-r.js'> | |
| </script> | |
| <script> | |
| var pres = document.getElementsByTagName("pre"); | |
| for (var i=0; i < pres.length; ++i) { | |
| pres[i].className = "prettyprint linenums"; | |
| } | |
| prettyPrint(); | |
| </script> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment