test2023h5 commited on
Commit
d95db82
·
verified ·
1 Parent(s): b3d00f0

Upload 180 files

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +1 -0
  2. app.py +3 -1
  3. components/.ipynb_checkpoints/index-checkpoint.html +40 -0
  4. components/.ipynb_checkpoints/mycell-checkpoint.vue +27 -0
  5. components/.ipynb_checkpoints/mycomponent-checkpoint.vue +33 -0
  6. components/.ipynb_checkpoints/pybridge-checkpoint.js +40 -0
  7. components/.ipynb_checkpoints/readme-checkpoint.txt +2 -0
  8. components/.ipynb_checkpoints/test-checkpoint.html +3 -0
  9. components/.ipynb_checkpoints/untitled-checkpoint.txt +0 -0
  10. components/untitled.txt +35 -0
  11. config.yaml +15 -0
  12. data/.DS_Store +0 -0
  13. data/.ipynb_checkpoints/HousingData-checkpoint.csv +507 -0
  14. data/.ipynb_checkpoints/iris-checkpoint.csv +151 -0
  15. data/.ipynb_checkpoints/samples-checkpoint.csv +3 -0
  16. data/seaborn/.ipynb_checkpoints/titanic-checkpoint.csv +892 -0
  17. data/seaborn/README.md +35 -0
  18. data/seaborn/anagrams.csv +21 -0
  19. data/seaborn/anscombe.csv +45 -0
  20. data/seaborn/attention.csv +61 -0
  21. data/seaborn/brain_networks.csv +0 -0
  22. data/seaborn/car_crashes.csv +52 -0
  23. data/seaborn/dataset_names.txt +22 -0
  24. data/seaborn/diamonds.csv +0 -0
  25. data/seaborn/dots.csv +849 -0
  26. data/seaborn/dowjones.csv +650 -0
  27. data/seaborn/exercise.csv +91 -0
  28. data/seaborn/flights.csv +145 -0
  29. data/seaborn/fmri.csv +1065 -0
  30. data/seaborn/geyser.csv +273 -0
  31. data/seaborn/glue.csv +65 -0
  32. data/seaborn/healthexp.csv +275 -0
  33. data/seaborn/iris.csv +151 -0
  34. data/seaborn/mpg.csv +399 -0
  35. data/seaborn/penguins.csv +345 -0
  36. data/seaborn/planets.csv +1036 -0
  37. data/seaborn/png/img1.png +0 -0
  38. data/seaborn/png/img2.png +0 -0
  39. data/seaborn/png/img3.png +0 -0
  40. data/seaborn/png/img4.png +0 -0
  41. data/seaborn/png/img5.png +0 -0
  42. data/seaborn/png/img6.png +0 -0
  43. data/seaborn/process/attention.py +13 -0
  44. data/seaborn/process/dowjones.py +9 -0
  45. data/seaborn/process/exercise.py +14 -0
  46. data/seaborn/process/flights.py +30 -0
  47. data/seaborn/process/gammas.py +33 -0
  48. data/seaborn/process/geyser.py +15 -0
  49. data/seaborn/process/glue.py +10 -0
  50. data/seaborn/process/healthexp.py +29 -0
.gitattributes CHANGED
@@ -35,3 +35,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  media/davide_quatela--breathing_barcelona.mp3 filter=lfs diff=lfs merge=lfs -text
37
  data/ss_data.db filter=lfs diff=lfs merge=lfs -text
 
 
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
  media/davide_quatela--breathing_barcelona.mp3 filter=lfs diff=lfs merge=lfs -text
37
  data/ss_data.db filter=lfs diff=lfs merge=lfs -text
38
+ data/.ipynb_checkpoints/samples-checkpoint.csv filter=lfs diff=lfs merge=lfs -text
app.py CHANGED
@@ -1,6 +1,8 @@
 
 
1
  import simplestart as ss
2
 
3
- ss.md("## SimpleStart Introduction")
4
 
5
  ss.space()
6
  ss.md('''
 
1
+
2
+
3
  import simplestart as ss
4
 
5
+ ss.md("# SimpleStart Introduction", color="#3451b2")
6
 
7
  ss.space()
8
  ss.md('''
components/.ipynb_checkpoints/index-checkpoint.html ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!--
2
+ this example on "Code snippet: create Components without any frontend tooling (no React, Babel, Webpack, etc)"
3
+ is copied from streamlit and modified, you can find it at
4
+ https://discuss.streamlit.io/t/code-snippet-create-components-without-any-frontend-tooling-no-react-babel-webpack-etc/13064
5
+ -->
6
+
7
+ <html>
8
+
9
+ <head>
10
+ <script src="pybridge.js"></script>
11
+ </head>
12
+
13
+ <body style="height:100px">
14
+ <input id="myinput" value="" autocomplete="off" placeholder="Enter text and press enter" />
15
+ </body>
16
+
17
+ <script>
18
+ var myInput = document.getElementById("myinput");
19
+
20
+ myInput.addEventListener("change", function() {
21
+ ////将消息发送给Python端
22
+ sendDataToPython({
23
+ value: myInput.value,
24
+ });
25
+ })
26
+
27
+ //接受来自Python端的消息消息
28
+ window.addEventListener("message", onDataFromPython);
29
+
30
+ function onDataFromPython(event) {
31
+ var data = event.data.arg;
32
+ if (event.data.type !== "pypost") return;
33
+ myInput.value = data.my_input_value; // Access values sent from Python here!
34
+ }
35
+
36
+ //如果系统设置失败,可以手工设置高度
37
+ //setFrameHeight(200);
38
+ </script>
39
+
40
+ </html>
components/.ipynb_checkpoints/mycell-checkpoint.vue ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <template>
2
+ <!--<el-tag>{{item.value}}</el-tag>-->
3
+ <v-row>
4
+ <v-rating
5
+ v-model="rating" density="compact" color="orange" half-increments></v-rating>
6
+ <v-chip variant="text">{{item.value}}</v-chip>
7
+ </v-row>
8
+ </template>
9
+
10
+ <script>
11
+
12
+ module.exports = {
13
+ props:["item"],
14
+
15
+ data () {
16
+ return {
17
+ rating: 3
18
+ }
19
+ },
20
+ methods: {
21
+ //todo
22
+ },
23
+ mounted: function () {
24
+ this.rating = this.item.value/20
25
+ },
26
+ }
27
+ </script>
components/.ipynb_checkpoints/mycomponent-checkpoint.vue ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <template>
2
+ <div class="my-component">
3
+ <h1>{{title}}: {{ data.language }}</h1>
4
+ <el-button @click="testme">handle on server</el-button>
5
+ </div>
6
+ </template>
7
+
8
+ <script>
9
+ module.exports = {
10
+ name: 'MyComponent',
11
+
12
+ data() {
13
+ return {
14
+ title:"computer",
15
+ }
16
+ },
17
+
18
+ methods: {
19
+ testme(){
20
+ this.streamsync.forwardData(this, eventname="ontest", "12345")
21
+ }
22
+ }
23
+ }
24
+ </script>
25
+
26
+ <style>
27
+ .my-component {
28
+ width:50%;
29
+ background-color: #f0f0f0;
30
+ padding: 20px;
31
+ margin:10px 0;
32
+ }
33
+ </style>
components/.ipynb_checkpoints/pybridge-checkpoint.js ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // ----------------------------------------------------
2
+ // Just copy/paste these functions as-is:
3
+ // 获取 URL 参数
4
+ const urlParams = new URLSearchParams(window.location.search);
5
+
6
+ // 获取指定参数的值
7
+ const componentId = urlParams.get('componentId');
8
+
9
+ function init() {
10
+ sendMessageToStreamlitClient("componentReady", {msg: "ready"});
11
+ }
12
+
13
+ function sendMessageToStreamlitClient(type, data) {
14
+ var outData = Object.assign({
15
+ componentId:componentId,
16
+ isSSMessage: true,
17
+ _type: type,
18
+ }, data);
19
+ window.parent.postMessage(outData, "*");
20
+ }
21
+
22
+ // The `data` argument can be any JSON-serializable value.
23
+ function sendDataToPython(data) {
24
+ sendMessageToStreamlitClient("setComponentValue", data);
25
+ }
26
+
27
+ // Hook things up!
28
+ //window.addEventListener("message", onDataFromPython);
29
+ init();
30
+
31
+ function setFrameHeight(height) {
32
+ sendMessageToStreamlitClient("setFrameHeight", {height: height});
33
+ }
34
+
35
+ // Hack to autoset the iframe height.
36
+ window.addEventListener("load", function() {
37
+ window.setTimeout(function() {
38
+ setFrameHeight(document.documentElement.clientHeight)
39
+ }, 0);
40
+ });
components/.ipynb_checkpoints/readme-checkpoint.txt ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ Code snippet: create Components without any frontend tooling (no React, Babel, Webpack, etc)
2
+ https://discuss.streamlit.io/t/code-snippet-create-components-without-any-frontend-tooling-no-react-babel-webpack-etc/13064/1
components/.ipynb_checkpoints/test-checkpoint.html ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ <html>
2
+ hello, world
3
+ </html>
components/.ipynb_checkpoints/untitled-checkpoint.txt ADDED
File without changes
components/untitled.txt ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <template>
2
+ <el-col :span="data.span">
3
+ <el-menu
4
+ :default-active="activeIndex"
5
+ class="el-menu-demo"
6
+ :mode="data.direction"
7
+ @select="(key, keyPath) => console.log(key, keyPath)"
8
+ :ellipsis="false"
9
+ active-text-color="#ffd04b"
10
+ background-color="#545c64"
11
+ text-color="#fff"
12
+ >
13
+ <template v-for="item in data.menuItems">
14
+ <el-menu-item
15
+ v-if="!item.subItems"
16
+ :key="item.index"
17
+ :index="item.index"
18
+ :disabled="item.disabled"
19
+ >
20
+ {{ item.title }}
21
+ </el-menu-item>
22
+ <el-sub-menu v-else :key="item.index" :index="item.index">
23
+ <template #title>{{ item.title }}</template>
24
+ <el-menu-item
25
+ v-for="subItem in item.subItems"
26
+ :key="subItem.index"
27
+ :index="subItem.index"
28
+ >
29
+ {{ subItem.title }}
30
+ </el-menu-item>
31
+ </el-sub-menu>
32
+ </template>
33
+ </el-menu>
34
+ </el-col>
35
+ </template>
config.yaml ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ title: "SimpleStart Demo"
2
+
3
+ show_sidebar: true
4
+ wide_screen_mode : true
5
+
6
+ show_header: False
7
+ app_bar_height: 59 ##default is 64
8
+
9
+ show_footer: False
10
+
11
+ locales:
12
+ - code: ""
13
+ name: "English"
14
+ - code: "zh"
15
+ name: "Chinese 中文"
data/.DS_Store ADDED
Binary file (6.15 kB). View file
 
data/.ipynb_checkpoints/HousingData-checkpoint.csv ADDED
@@ -0,0 +1,507 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ CRIM,ZN,INDUS,CHAS,NOX,RM,AGE,DIS,RAD,TAX,PTRATIO,B,LSTAT,MEDV
2
+ 0.00632,18,2.31,0,0.538,6.575,65.2,4.09,1,296,15.3,396.9,4.98,24
3
+ 0.02731,0,7.07,0,0.469,6.421,78.9,4.9671,2,242,17.8,396.9,9.14,21.6
4
+ 0.02729,0,7.07,0,0.469,7.185,61.1,4.9671,2,242,17.8,392.83,4.03,34.7
5
+ 0.03237,0,2.18,0,0.458,6.998,45.8,6.0622,3,222,18.7,394.63,2.94,33.4
6
+ 0.06905,0,2.18,0,0.458,7.147,54.2,6.0622,3,222,18.7,396.9,NA,36.2
7
+ 0.02985,0,2.18,0,0.458,6.43,58.7,6.0622,3,222,18.7,394.12,5.21,28.7
8
+ 0.08829,12.5,7.87,NA,0.524,6.012,66.6,5.5605,5,311,15.2,395.6,12.43,22.9
9
+ 0.14455,12.5,7.87,0,0.524,6.172,96.1,5.9505,5,311,15.2,396.9,19.15,27.1
10
+ 0.21124,12.5,7.87,0,0.524,5.631,100,6.0821,5,311,15.2,386.63,29.93,16.5
11
+ 0.17004,12.5,7.87,NA,0.524,6.004,85.9,6.5921,5,311,15.2,386.71,17.1,18.9
12
+ 0.22489,12.5,7.87,0,0.524,6.377,94.3,6.3467,5,311,15.2,392.52,20.45,15
13
+ 0.11747,12.5,7.87,0,0.524,6.009,82.9,6.2267,5,311,15.2,396.9,13.27,18.9
14
+ 0.09378,12.5,7.87,0,0.524,5.889,39,5.4509,5,311,15.2,390.5,15.71,21.7
15
+ 0.62976,0,8.14,0,0.538,5.949,61.8,4.7075,4,307,21,396.9,8.26,20.4
16
+ 0.63796,0,8.14,NA,0.538,6.096,84.5,4.4619,4,307,21,380.02,10.26,18.2
17
+ 0.62739,0,8.14,0,0.538,5.834,56.5,4.4986,4,307,21,395.62,8.47,19.9
18
+ 1.05393,0,8.14,0,0.538,5.935,29.3,4.4986,4,307,21,386.85,6.58,23.1
19
+ 0.7842,0,8.14,0,0.538,5.99,81.7,4.2579,4,307,21,386.75,14.67,17.5
20
+ 0.80271,0,8.14,0,0.538,5.456,36.6,3.7965,4,307,21,288.99,11.69,20.2
21
+ 0.7258,0,8.14,0,0.538,5.727,69.5,3.7965,4,307,21,390.95,11.28,18.2
22
+ 1.25179,0,8.14,0,0.538,5.57,98.1,3.7979,4,307,21,376.57,21.02,13.6
23
+ 0.85204,0,8.14,0,0.538,5.965,89.2,4.0123,4,307,21,392.53,13.83,19.6
24
+ 1.23247,0,8.14,0,0.538,6.142,91.7,3.9769,4,307,21,396.9,18.72,15.2
25
+ 0.98843,0,8.14,0,0.538,5.813,100,4.0952,4,307,21,394.54,19.88,14.5
26
+ 0.75026,0,8.14,0,0.538,5.924,94.1,4.3996,4,307,21,394.33,16.3,15.6
27
+ 0.84054,0,8.14,0,0.538,5.599,85.7,4.4546,4,307,21,303.42,16.51,13.9
28
+ 0.67191,0,8.14,0,0.538,5.813,90.3,4.682,4,307,21,376.88,14.81,16.6
29
+ 0.95577,0,8.14,0,0.538,6.047,88.8,4.4534,4,307,21,306.38,17.28,14.8
30
+ 0.77299,0,8.14,0,0.538,6.495,94.4,4.4547,4,307,21,387.94,12.8,18.4
31
+ 1.00245,0,8.14,0,0.538,6.674,87.3,4.239,4,307,21,380.23,11.98,21
32
+ 1.13081,0,8.14,0,0.538,5.713,94.1,4.233,4,307,21,360.17,22.6,12.7
33
+ 1.35472,0,8.14,0,0.538,6.072,100,4.175,4,307,21,376.73,13.04,14.5
34
+ 1.38799,0,8.14,0,0.538,5.95,82,3.99,4,307,21,232.6,27.71,13.2
35
+ 1.15172,0,8.14,0,0.538,5.701,95,3.7872,4,307,21,358.77,18.35,13.1
36
+ 1.61282,0,8.14,0,0.538,6.096,96.9,3.7598,4,307,21,248.31,20.34,13.5
37
+ 0.06417,0,5.96,0,0.499,5.933,68.2,3.3603,5,279,19.2,396.9,NA,18.9
38
+ 0.09744,0,NA,0,0.499,5.841,61.4,3.3779,5,279,19.2,377.56,11.41,20
39
+ 0.08014,0,5.96,0,0.499,5.85,41.5,3.9342,5,279,19.2,396.9,8.77,21
40
+ 0.17505,0,5.96,0,0.499,5.966,30.2,3.8473,5,279,19.2,393.43,10.13,24.7
41
+ 0.02763,75,2.95,0,0.428,6.595,21.8,5.4011,3,252,18.3,395.63,4.32,30.8
42
+ 0.03359,75,2.95,0,0.428,7.024,15.8,5.4011,3,252,18.3,395.62,1.98,34.9
43
+ 0.12744,0,6.91,0,0.448,6.77,2.9,5.7209,3,233,17.9,385.41,4.84,26.6
44
+ 0.1415,0,6.91,0,0.448,6.169,6.6,5.7209,3,233,17.9,383.37,5.81,25.3
45
+ 0.15936,0,6.91,NA,0.448,6.211,6.5,5.7209,3,233,17.9,394.46,7.44,24.7
46
+ 0.12269,0,6.91,0,0.448,6.069,40,5.7209,3,233,17.9,389.39,9.55,21.2
47
+ 0.17142,0,6.91,0,0.448,5.682,33.8,5.1004,3,233,17.9,396.9,10.21,19.3
48
+ 0.18836,0,6.91,0,0.448,5.786,33.3,5.1004,3,233,17.9,396.9,14.15,20
49
+ 0.22927,0,NA,0,0.448,6.03,85.5,5.6894,3,233,17.9,392.74,18.8,16.6
50
+ 0.25387,0,6.91,0,0.448,5.399,95.3,5.87,3,233,17.9,396.9,30.81,14.4
51
+ 0.21977,0,6.91,0,0.448,5.602,62,6.0877,3,233,17.9,396.9,16.2,19.4
52
+ 0.08873,21,5.64,0,0.439,5.963,45.7,6.8147,4,243,16.8,395.56,13.45,19.7
53
+ 0.04337,21,NA,0,0.439,6.115,63,6.8147,4,243,16.8,393.97,9.43,20.5
54
+ 0.0536,21,5.64,0,0.439,6.511,21.1,6.8147,4,243,16.8,396.9,5.28,25
55
+ NA,21,5.64,0,0.439,5.998,21.4,6.8147,4,243,16.8,396.9,8.43,23.4
56
+ 0.0136,75,4,0,0.41,5.888,47.6,7.3197,3,469,21.1,396.9,14.8,18.9
57
+ 0.01311,90,1.22,0,0.403,7.249,21.9,8.6966,5,226,17.9,395.93,4.81,35.4
58
+ 0.02055,85,0.74,0,0.41,6.383,35.7,9.1876,2,313,17.3,396.9,5.77,24.7
59
+ 0.01432,100,1.32,0,0.411,6.816,40.5,8.3248,5,256,15.1,392.9,3.95,31.6
60
+ 0.15445,25,5.13,0,0.453,6.145,29.2,7.8148,8,284,19.7,390.68,6.86,23.3
61
+ 0.10328,25,5.13,0,0.453,5.927,47.2,6.932,8,284,19.7,396.9,9.22,19.6
62
+ 0.14932,25,5.13,0,0.453,5.741,66.2,7.2254,8,284,19.7,395.11,13.15,18.7
63
+ 0.17171,25,5.13,0,0.453,5.966,93.4,6.8185,8,284,19.7,378.08,14.44,16
64
+ 0.11027,25,5.13,0,0.453,6.456,67.8,7.2255,8,284,19.7,396.9,6.73,22.2
65
+ 0.1265,25,5.13,0,0.453,6.762,43.4,7.9809,8,284,19.7,395.58,9.5,25
66
+ 0.01951,17.5,1.38,0,0.4161,7.104,59.5,9.2229,3,216,18.6,393.24,8.05,33
67
+ 0.03584,80,3.37,0,0.398,6.29,17.8,6.6115,4,337,16.1,396.9,4.67,23.5
68
+ 0.04379,80,3.37,0,0.398,5.787,31.1,6.6115,4,337,16.1,396.9,10.24,19.4
69
+ 0.05789,12.5,6.07,0,0.409,5.878,21.4,6.498,4,345,18.9,396.21,8.1,22
70
+ 0.13554,12.5,6.07,0,0.409,5.594,36.8,6.498,4,345,18.9,396.9,13.09,17.4
71
+ 0.12816,12.5,6.07,0,0.409,5.885,33,6.498,4,345,18.9,396.9,8.79,20.9
72
+ 0.08826,0,10.81,0,0.413,6.417,6.6,5.2873,4,305,19.2,383.73,6.72,24.2
73
+ 0.15876,0,10.81,0,0.413,5.961,17.5,5.2873,4,305,19.2,376.94,9.88,21.7
74
+ 0.09164,0,10.81,0,0.413,6.065,7.8,5.2873,4,305,19.2,390.91,5.52,22.8
75
+ 0.19539,0,10.81,0,0.413,6.245,6.2,5.2873,4,305,19.2,377.17,NA,23.4
76
+ 0.07896,0,12.83,0,0.437,6.273,NA,4.2515,5,398,18.7,394.92,6.78,24.1
77
+ 0.09512,0,12.83,0,0.437,6.286,45,4.5026,5,398,18.7,383.23,8.94,21.4
78
+ 0.10153,0,12.83,0,0.437,6.279,74.5,4.0522,5,398,18.7,373.66,11.97,20
79
+ 0.08707,0,12.83,0,0.437,6.14,45.8,4.0905,5,398,18.7,386.96,10.27,20.8
80
+ 0.05646,0,12.83,0,0.437,6.232,53.7,5.0141,5,398,18.7,386.4,12.34,21.2
81
+ 0.08387,0,12.83,0,0.437,5.874,36.6,4.5026,5,398,18.7,396.06,NA,20.3
82
+ 0.04113,25,4.86,0,0.426,6.727,33.5,5.4007,4,281,19,396.9,5.29,28
83
+ 0.04462,25,4.86,0,0.426,6.619,70.4,5.4007,4,281,19,395.63,7.22,23.9
84
+ 0.03659,25,4.86,0,0.426,6.302,32.2,5.4007,4,281,19,396.9,6.72,24.8
85
+ 0.03551,25,4.86,0,0.426,6.167,46.7,5.4007,4,281,19,390.64,7.51,22.9
86
+ 0.05059,0,4.49,0,0.449,6.389,48,4.7794,3,247,18.5,396.9,9.62,23.9
87
+ 0.05735,0,4.49,0,0.449,6.63,56.1,4.4377,3,247,18.5,392.3,6.53,26.6
88
+ 0.05188,0,4.49,0,0.449,6.015,45.1,4.4272,3,247,18.5,395.99,12.86,22.5
89
+ 0.07151,0,4.49,0,0.449,6.121,56.8,3.7476,3,247,18.5,395.15,NA,22.2
90
+ 0.0566,0,3.41,0,0.489,7.007,86.3,3.4217,2,270,17.8,396.9,5.5,23.6
91
+ 0.05302,0,3.41,0,0.489,7.079,63.1,3.4145,2,270,17.8,396.06,5.7,28.7
92
+ 0.04684,0,3.41,0,0.489,6.417,66.1,3.0923,2,270,17.8,392.18,8.81,22.6
93
+ 0.03932,0,3.41,0,0.489,6.405,73.9,3.0921,2,270,17.8,393.55,8.2,22
94
+ 0.04203,NA,15.04,0,0.464,6.442,53.6,3.6659,4,270,18.2,395.01,8.16,22.9
95
+ 0.02875,28,15.04,0,0.464,6.211,28.9,3.6659,4,270,18.2,396.33,6.21,25
96
+ 0.04294,28,15.04,0,0.464,6.249,77.3,3.615,4,270,18.2,396.9,10.59,20.6
97
+ 0.12204,0,2.89,0,0.445,6.625,57.8,3.4952,2,276,18,357.98,6.65,28.4
98
+ 0.11504,0,2.89,0,0.445,6.163,69.6,3.4952,2,276,18,391.83,11.34,21.4
99
+ 0.12083,0,2.89,0,0.445,8.069,76,3.4952,2,276,18,396.9,4.21,38.7
100
+ 0.08187,0,2.89,0,0.445,7.82,36.9,3.4952,2,276,18,393.53,3.57,43.8
101
+ 0.0686,0,2.89,0,0.445,7.416,62.5,3.4952,2,276,18,396.9,6.19,33.2
102
+ 0.14866,0,8.56,0,0.52,6.727,79.9,2.7778,5,384,20.9,394.76,9.42,27.5
103
+ 0.11432,0,8.56,0,0.52,6.781,71.3,2.8561,5,384,20.9,395.58,7.67,26.5
104
+ 0.22876,0,8.56,0,0.52,6.405,85.4,2.7147,5,384,20.9,70.8,10.63,18.6
105
+ 0.21161,0,8.56,0,0.52,6.137,NA,2.7147,5,384,20.9,394.47,13.44,19.3
106
+ 0.1396,0,8.56,0,0.52,6.167,90,2.421,5,384,20.9,392.69,12.33,20.1
107
+ 0.13262,0,8.56,0,0.52,5.851,96.7,2.1069,5,384,20.9,394.05,16.47,19.5
108
+ 0.1712,0,8.56,0,0.52,5.836,91.9,2.211,5,384,20.9,395.67,18.66,19.5
109
+ 0.13117,0,8.56,0,0.52,6.127,85.2,2.1224,5,384,20.9,387.69,14.09,20.4
110
+ 0.12802,0,8.56,0,0.52,6.474,97.1,2.4329,5,384,20.9,395.24,12.27,19.8
111
+ 0.26363,0,8.56,0,0.52,6.229,91.2,2.5451,5,384,20.9,391.23,15.55,19.4
112
+ 0.10793,0,8.56,0,0.52,6.195,54.4,2.7778,5,384,20.9,393.49,13,21.7
113
+ 0.10084,0,10.01,0,0.547,6.715,81.6,2.6775,6,432,17.8,395.59,10.16,22.8
114
+ 0.12329,0,10.01,0,0.547,5.913,92.9,2.3534,6,432,17.8,394.95,16.21,18.8
115
+ 0.22212,0,10.01,0,0.547,6.092,95.4,2.548,6,432,17.8,396.9,17.09,18.7
116
+ 0.14231,0,10.01,0,0.547,6.254,84.2,2.2565,6,432,17.8,388.74,10.45,18.5
117
+ NA,0,10.01,0,0.547,5.928,88.2,2.4631,6,432,17.8,344.91,15.76,18.3
118
+ 0.13158,0,10.01,0,0.547,6.176,72.5,2.7301,6,432,17.8,393.3,NA,21.2
119
+ 0.15098,0,10.01,0,0.547,6.021,82.6,2.7474,6,432,17.8,394.51,10.3,19.2
120
+ 0.13058,NA,10.01,0,0.547,5.872,73.1,2.4775,6,432,17.8,338.63,15.37,20.4
121
+ 0.14476,0,10.01,NA,0.547,5.731,65.2,2.7592,6,432,17.8,391.5,13.61,19.3
122
+ 0.06899,0,25.65,0,0.581,5.87,69.7,2.2577,2,188,19.1,389.15,14.37,22
123
+ 0.07165,0,25.65,0,0.581,6.004,84.1,2.1974,2,188,19.1,377.67,14.27,20.3
124
+ 0.09299,0,25.65,0,0.581,5.961,92.9,2.0869,2,188,19.1,378.09,17.93,20.5
125
+ 0.15038,0,NA,0,0.581,5.856,97,1.9444,2,188,19.1,370.31,25.41,17.3
126
+ 0.09849,0,25.65,0,0.581,5.879,95.8,2.0063,2,188,19.1,379.38,17.58,18.8
127
+ 0.16902,0,25.65,0,0.581,5.986,88.4,1.9929,2,188,19.1,385.02,14.81,21.4
128
+ 0.38735,0,25.65,0,0.581,5.613,NA,1.7572,2,188,19.1,359.29,27.26,15.7
129
+ 0.25915,0,21.89,0,0.624,5.693,96,1.7883,4,437,21.2,392.11,17.19,16.2
130
+ 0.32543,0,21.89,0,0.624,6.431,98.8,1.8125,4,437,21.2,396.9,15.39,18
131
+ 0.88125,0,21.89,0,0.624,5.637,94.7,1.9799,4,437,21.2,396.9,18.34,14.3
132
+ 0.34006,0,21.89,0,0.624,6.458,98.9,2.1185,4,437,21.2,395.04,12.6,19.2
133
+ 1.19294,0,21.89,0,0.624,6.326,97.7,2.271,4,437,21.2,396.9,12.26,19.6
134
+ 0.59005,0,21.89,0,0.624,6.372,97.9,2.3274,4,437,21.2,385.76,11.12,23
135
+ 0.32982,NA,NA,0,0.624,5.822,95.4,2.4699,4,437,21.2,388.69,15.03,18.4
136
+ 0.97617,0,21.89,0,0.624,5.757,98.4,2.346,4,437,21.2,262.76,17.31,15.6
137
+ 0.55778,0,21.89,0,0.624,6.335,98.2,2.1107,4,437,21.2,394.67,16.96,18.1
138
+ 0.32264,0,21.89,0,0.624,5.942,93.5,1.9669,4,437,21.2,378.25,16.9,17.4
139
+ 0.35233,0,21.89,0,0.624,6.454,98.4,1.8498,4,437,21.2,394.08,14.59,17.1
140
+ 0.2498,0,21.89,0,0.624,5.857,NA,1.6686,4,437,21.2,392.04,21.32,13.3
141
+ 0.54452,0,21.89,0,0.624,6.151,97.9,1.6687,4,437,21.2,396.9,18.46,17.8
142
+ 0.2909,0,21.89,0,0.624,6.174,93.6,1.6119,4,437,21.2,388.08,24.16,14
143
+ 1.62864,0,21.89,0,0.624,5.019,100,1.4394,4,437,21.2,396.9,34.41,14.4
144
+ 3.32105,0,19.58,1,0.871,5.403,100,1.3216,5,403,14.7,396.9,26.82,13.4
145
+ 4.0974,0,19.58,0,0.871,5.468,100,1.4118,5,403,14.7,396.9,26.42,15.6
146
+ 2.77974,0,19.58,0,0.871,4.903,97.8,1.3459,5,403,14.7,396.9,29.29,11.8
147
+ 2.37934,0,19.58,0,0.871,6.13,100,1.4191,5,403,14.7,172.91,27.8,13.8
148
+ 2.15505,NA,19.58,0,0.871,5.628,100,1.5166,5,403,14.7,169.27,16.65,15.6
149
+ 2.36862,0,NA,0,0.871,4.926,95.7,1.4608,5,403,14.7,391.71,29.53,14.6
150
+ 2.33099,0,NA,0,0.871,5.186,93.8,1.5296,5,403,14.7,356.99,28.32,17.8
151
+ 2.73397,0,19.58,0,0.871,5.597,94.9,1.5257,5,403,14.7,351.85,21.45,15.4
152
+ 1.6566,0,19.58,0,0.871,6.122,NA,1.618,5,403,14.7,372.8,14.1,21.5
153
+ 1.49632,0,19.58,0,0.871,5.404,100,1.5916,5,403,14.7,341.6,13.28,19.6
154
+ 1.12658,0,19.58,NA,0.871,5.012,88,1.6102,5,403,14.7,343.28,12.12,15.3
155
+ 2.14918,0,19.58,0,0.871,5.709,98.5,1.6232,5,403,14.7,261.95,15.79,19.4
156
+ 1.41385,0,19.58,1,0.871,6.129,96,1.7494,5,403,14.7,321.02,15.12,17
157
+ 3.53501,0,19.58,1,0.871,6.152,NA,1.7455,5,403,14.7,88.01,15.02,15.6
158
+ 2.44668,0,19.58,0,0.871,5.272,94,1.7364,5,403,14.7,88.63,16.14,13.1
159
+ 1.22358,NA,19.58,0,0.605,6.943,97.4,1.8773,5,403,14.7,363.43,4.59,41.3
160
+ 1.34284,0,19.58,0,0.605,6.066,100,1.7573,5,403,14.7,353.89,6.43,24.3
161
+ 1.42502,0,19.58,0,0.871,6.51,100,1.7659,5,403,14.7,364.31,7.39,23.3
162
+ 1.27346,0,19.58,1,0.605,6.25,92.6,1.7984,5,403,14.7,338.92,5.5,27
163
+ 1.46336,0,19.58,0,0.605,7.489,90.8,1.9709,5,403,14.7,374.43,1.73,50
164
+ 1.83377,0,19.58,1,0.605,7.802,98.2,2.0407,5,403,14.7,389.61,1.92,50
165
+ 1.51902,0,19.58,1,0.605,8.375,NA,2.162,5,403,14.7,388.45,3.32,50
166
+ 2.24236,0,19.58,0,0.605,5.854,91.8,2.422,5,403,14.7,395.11,11.64,22.7
167
+ 2.924,0,19.58,0,0.605,6.101,93,2.2834,5,403,14.7,240.16,9.81,25
168
+ 2.01019,0,19.58,0,0.605,7.929,96.2,2.0459,5,403,14.7,369.3,3.7,50
169
+ 1.80028,NA,19.58,0,0.605,5.877,79.2,2.4259,5,403,14.7,227.61,12.14,23.8
170
+ 2.3004,0,19.58,0,0.605,6.319,96.1,2.1,5,403,14.7,297.09,11.1,23.8
171
+ 2.44953,0,19.58,0,0.605,6.402,95.2,2.2625,5,403,14.7,330.04,11.32,22.3
172
+ 1.20742,0,19.58,0,0.605,5.875,94.6,2.4259,5,403,14.7,292.29,14.43,17.4
173
+ 2.3139,0,19.58,0,0.605,5.88,97.3,2.3887,5,403,14.7,348.13,12.03,19.1
174
+ 0.13914,0,4.05,0,0.51,5.572,88.5,2.5961,5,296,16.6,396.9,14.69,23.1
175
+ 0.09178,0,NA,0,0.51,6.416,NA,2.6463,5,296,16.6,395.5,9.04,23.6
176
+ 0.08447,0,4.05,0,0.51,5.859,68.7,2.7019,5,296,16.6,393.23,9.64,22.6
177
+ 0.06664,0,4.05,0,0.51,6.546,33.1,3.1323,5,296,16.6,390.96,5.33,29.4
178
+ 0.07022,0,4.05,0,0.51,6.02,47.2,3.5549,5,296,16.6,393.23,10.11,23.2
179
+ 0.05425,0,NA,0,0.51,6.315,73.4,3.3175,5,296,16.6,395.6,6.29,24.6
180
+ 0.06642,0,4.05,0,0.51,6.86,74.4,2.9153,5,296,16.6,391.27,6.92,29.9
181
+ 0.0578,0,2.46,0,0.488,6.98,58.4,2.829,3,193,17.8,396.9,5.04,37.2
182
+ 0.06588,0,2.46,0,0.488,7.765,83.3,2.741,3,193,17.8,395.56,7.56,39.8
183
+ 0.06888,0,2.46,0,0.488,6.144,62.2,2.5979,3,193,17.8,396.9,9.45,36.2
184
+ 0.09103,0,2.46,0,0.488,7.155,92.2,2.7006,3,193,17.8,394.12,4.82,37.9
185
+ NA,0,2.46,0,0.488,6.563,95.6,2.847,3,193,17.8,396.9,5.68,32.5
186
+ 0.08308,0,2.46,0,0.488,5.604,89.8,2.9879,3,193,17.8,391,13.98,26.4
187
+ 0.06047,0,2.46,0,0.488,6.153,68.8,3.2797,3,193,17.8,387.11,13.15,29.6
188
+ 0.05602,NA,2.46,0,0.488,7.831,53.6,3.1992,3,193,17.8,392.63,4.45,50
189
+ 0.07875,45,3.44,0,0.437,6.782,41.1,3.7886,5,398,15.2,393.87,6.68,32
190
+ 0.12579,45,3.44,0,0.437,6.556,29.1,4.5667,5,398,15.2,382.84,4.56,29.8
191
+ 0.0837,45,3.44,0,0.437,7.185,38.9,4.5667,5,398,15.2,396.9,5.39,34.9
192
+ 0.09068,45,3.44,0,0.437,6.951,21.5,6.4798,5,398,15.2,377.68,5.1,37
193
+ NA,45,3.44,0,0.437,6.739,30.8,6.4798,5,398,15.2,389.71,4.69,30.5
194
+ NA,45,3.44,0,0.437,7.178,26.3,6.4798,5,398,15.2,390.49,2.87,36.4
195
+ 0.02187,60,2.93,0,0.401,6.8,NA,6.2196,1,265,15.6,393.37,5.03,31.1
196
+ 0.01439,60,2.93,0,0.401,6.604,18.8,6.2196,1,265,15.6,376.7,4.38,29.1
197
+ 0.01381,80,0.46,0,0.422,7.875,32,5.6484,4,255,14.4,394.23,2.97,50
198
+ NA,80,1.52,0,0.404,7.287,34.1,7.309,2,329,12.6,396.9,4.08,33.3
199
+ 0.04666,80,1.52,0,0.404,7.107,36.6,7.309,2,329,12.6,354.31,8.61,30.3
200
+ 0.03768,80,1.52,0,0.404,7.274,38.3,7.309,2,329,12.6,392.2,6.62,34.6
201
+ 0.0315,95,1.47,0,0.403,6.975,15.3,7.6534,3,402,17,396.9,4.56,34.9
202
+ 0.01778,95,1.47,0,0.403,7.135,13.9,7.6534,3,402,17,384.3,4.45,32.9
203
+ 0.03445,82.5,2.03,0,0.415,6.162,38.4,6.27,2,348,14.7,393.77,7.43,24.1
204
+ 0.02177,82.5,2.03,0,0.415,7.61,15.7,6.27,2,348,14.7,395.38,3.11,42.3
205
+ 0.0351,95,2.68,0,0.4161,7.853,33.2,5.118,4,224,14.7,392.78,3.81,48.5
206
+ 0.02009,95,2.68,0,0.4161,8.034,31.9,5.118,4,224,14.7,390.55,2.88,50
207
+ 0.13642,NA,10.59,0,0.489,5.891,22.3,3.9454,4,277,18.6,396.9,10.87,22.6
208
+ 0.22969,0,10.59,NA,0.489,6.326,52.5,4.3549,4,277,18.6,394.87,10.97,24.4
209
+ 0.25199,0,10.59,0,0.489,5.783,72.7,4.3549,4,277,18.6,389.43,NA,22.5
210
+ 0.13587,0,10.59,1,0.489,6.064,59.1,4.2392,4,277,18.6,381.32,14.66,24.4
211
+ 0.43571,0,10.59,1,0.489,5.344,100,3.875,4,277,18.6,396.9,23.09,20
212
+ 0.17446,NA,10.59,1,0.489,5.96,92.1,3.8771,4,277,18.6,393.25,17.27,21.7
213
+ 0.37578,0,10.59,1,0.489,5.404,88.6,3.665,4,277,18.6,395.24,23.98,19.3
214
+ 0.21719,0,10.59,1,0.489,5.807,53.8,3.6526,4,277,18.6,390.94,16.03,22.4
215
+ 0.14052,0,10.59,0,0.489,6.375,32.3,3.9454,4,277,18.6,385.81,9.38,28.1
216
+ 0.28955,0,10.59,0,0.489,5.412,9.8,3.5875,4,277,18.6,348.93,29.55,23.7
217
+ 0.19802,0,10.59,0,0.489,6.182,NA,3.9454,4,277,18.6,393.63,9.47,25
218
+ 0.0456,0,13.89,1,0.55,5.888,56,3.1121,5,276,16.4,392.8,13.51,23.3
219
+ 0.07013,0,13.89,0,0.55,6.642,85.1,3.4211,5,276,16.4,392.78,9.69,28.7
220
+ 0.11069,0,13.89,1,0.55,5.951,93.8,2.8893,5,276,16.4,396.9,17.92,21.5
221
+ 0.11425,0,NA,1,0.55,6.373,92.4,3.3633,5,276,16.4,393.74,10.5,23
222
+ 0.35809,0,6.2,1,0.507,6.951,88.5,2.8617,8,307,17.4,391.7,9.71,26.7
223
+ 0.40771,0,6.2,1,0.507,6.164,91.3,3.048,8,307,17.4,395.24,21.46,21.7
224
+ 0.62356,0,6.2,1,0.507,6.879,77.7,3.2721,8,307,17.4,390.39,9.93,27.5
225
+ 0.6147,0,6.2,0,0.507,6.618,80.8,3.2721,8,307,17.4,396.9,7.6,30.1
226
+ 0.31533,0,6.2,0,0.504,8.266,78.3,2.8944,8,307,17.4,385.05,4.14,44.8
227
+ 0.52693,0,6.2,0,0.504,8.725,83,2.8944,8,307,17.4,382,4.63,50
228
+ 0.38214,0,6.2,0,0.504,8.04,86.5,3.2157,8,307,17.4,387.38,NA,37.6
229
+ 0.41238,0,6.2,0,0.504,7.163,79.9,3.2157,8,307,17.4,372.08,6.36,31.6
230
+ 0.29819,0,6.2,0,0.504,7.686,17,3.3751,8,307,17.4,377.51,NA,46.7
231
+ NA,0,6.2,0,0.504,6.552,21.4,3.3751,8,307,17.4,380.34,3.76,31.5
232
+ 0.537,0,6.2,0,0.504,5.981,68.1,3.6715,8,307,17.4,378.35,11.65,24.3
233
+ 0.46296,0,6.2,0,0.504,7.412,76.9,3.6715,8,307,17.4,376.14,5.25,31.7
234
+ 0.57529,0,6.2,0,0.507,8.337,73.3,3.8384,8,307,17.4,385.91,2.47,41.7
235
+ 0.33147,0,6.2,0,0.507,8.247,NA,3.6519,8,307,17.4,378.95,3.95,48.3
236
+ 0.44791,0,6.2,1,0.507,6.726,66.5,3.6519,8,307,17.4,360.2,8.05,29
237
+ 0.33045,0,6.2,0,0.507,6.086,61.5,3.6519,8,307,17.4,376.75,10.88,24
238
+ NA,0,6.2,1,0.507,6.631,76.5,4.148,8,307,17.4,388.45,9.54,25.1
239
+ 0.51183,0,6.2,0,0.507,7.358,71.6,4.148,8,307,17.4,390.07,4.73,31.5
240
+ 0.08244,NA,4.93,0,0.428,6.481,18.5,6.1899,6,300,16.6,379.41,6.36,23.7
241
+ 0.09252,30,4.93,0,0.428,6.606,42.2,6.1899,6,300,16.6,383.78,7.37,23.3
242
+ 0.11329,30,4.93,NA,0.428,6.897,54.3,6.3361,6,300,16.6,391.25,11.38,22
243
+ NA,30,4.93,0,0.428,6.095,65.1,6.3361,6,300,16.6,394.62,12.4,20.1
244
+ 0.1029,30,4.93,0,0.428,6.358,52.9,7.0355,6,300,16.6,372.75,11.22,22.2
245
+ 0.12757,30,4.93,0,0.428,6.393,7.8,7.0355,6,300,16.6,374.71,5.19,23.7
246
+ 0.20608,22,5.86,0,0.431,5.593,76.5,7.9549,7,330,19.1,372.49,12.5,17.6
247
+ 0.19133,22,NA,NA,0.431,5.605,70.2,7.9549,7,330,19.1,389.13,18.46,18.5
248
+ 0.33983,22,5.86,0,0.431,6.108,34.9,8.0555,7,330,19.1,390.18,9.16,24.3
249
+ 0.19657,22,5.86,0,0.431,6.226,79.2,8.0555,7,330,19.1,376.14,10.15,20.5
250
+ 0.16439,22,5.86,0,0.431,6.433,49.1,7.8265,7,330,19.1,374.71,9.52,24.5
251
+ 0.19073,22,5.86,0,0.431,6.718,17.5,7.8265,7,330,19.1,393.74,6.56,26.2
252
+ 0.1403,22,5.86,0,0.431,6.487,13,7.3967,7,330,19.1,396.28,5.9,24.4
253
+ 0.21409,22,5.86,0,0.431,6.438,8.9,7.3967,7,330,19.1,377.07,3.59,24.8
254
+ 0.08221,22,5.86,0,0.431,6.957,6.8,8.9067,7,330,19.1,386.09,3.53,29.6
255
+ 0.36894,22,5.86,0,0.431,8.259,8.4,8.9067,7,330,19.1,396.9,3.54,42.8
256
+ 0.04819,80,3.64,NA,0.392,6.108,32,9.2203,1,315,16.4,392.89,6.57,21.9
257
+ 0.03548,80,3.64,0,0.392,5.876,19.1,9.2203,1,315,16.4,395.18,9.25,20.9
258
+ 0.01538,90,3.75,0,0.394,7.454,34.2,6.3361,3,244,15.9,386.34,3.11,44
259
+ 0.61154,20,3.97,0,0.647,8.704,86.9,1.801,5,264,13,389.7,5.12,50
260
+ 0.66351,20,3.97,0,0.647,7.333,100,1.8946,5,264,13,383.29,7.79,36
261
+ 0.65665,20,3.97,0,0.647,6.842,100,2.0107,5,264,13,391.93,6.9,30.1
262
+ 0.54011,20,3.97,0,0.647,7.203,81.8,2.1121,5,264,13,392.8,9.59,33.8
263
+ 0.53412,20,3.97,0,0.647,7.52,89.4,2.1398,5,264,13,388.37,7.26,43.1
264
+ NA,20,3.97,0,0.647,8.398,91.5,2.2885,5,264,13,386.86,5.91,48.8
265
+ 0.82526,20,3.97,0,0.647,7.327,94.5,2.0788,5,264,13,393.42,11.25,31
266
+ 0.55007,20,3.97,0,0.647,7.206,91.6,1.9301,5,264,13,387.89,8.1,36.5
267
+ 0.76162,20,3.97,0,0.647,5.56,62.8,1.9865,5,264,13,392.4,10.45,22.8
268
+ 0.7857,NA,3.97,0,0.647,7.014,84.6,2.1329,5,264,13,384.07,14.79,30.7
269
+ 0.57834,20,3.97,0,0.575,8.297,67,2.4216,5,264,13,384.54,7.44,50
270
+ 0.5405,20,3.97,0,0.575,7.47,52.6,2.872,5,264,13,390.3,3.16,43.5
271
+ 0.09065,20,6.96,1,0.464,5.92,61.5,3.9175,3,223,18.6,391.34,13.65,20.7
272
+ 0.29916,20,6.96,0,0.464,5.856,42.1,4.429,3,223,18.6,388.65,13,21.1
273
+ 0.16211,20,6.96,0,0.464,6.24,16.3,4.429,3,223,18.6,396.9,NA,25.2
274
+ 0.1146,20,6.96,0,0.464,6.538,58.7,3.9175,3,223,18.6,394.96,7.73,24.4
275
+ 0.22188,20,6.96,1,0.464,7.691,51.8,4.3665,3,223,18.6,390.77,6.58,35.2
276
+ 0.05644,40,6.41,1,0.447,6.758,32.9,4.0776,4,254,17.6,396.9,3.53,32.4
277
+ 0.09604,40,6.41,0,0.447,6.854,42.8,4.2673,4,254,17.6,396.9,2.98,32
278
+ 0.10469,40,6.41,1,0.447,7.267,49,4.7872,4,254,17.6,389.25,6.05,33.2
279
+ 0.06127,40,6.41,1,0.447,6.826,27.6,4.8628,4,254,17.6,393.45,NA,33.1
280
+ 0.07978,40,6.41,0,0.447,6.482,32.1,4.1403,4,254,17.6,396.9,7.19,29.1
281
+ 0.21038,20,3.33,0,0.4429,6.812,32.2,4.1007,5,216,14.9,396.9,4.85,35.1
282
+ 0.03578,20,3.33,0,0.4429,7.82,64.5,4.6947,5,216,14.9,387.31,3.76,45.4
283
+ 0.03705,20,3.33,0,0.4429,6.968,NA,5.2447,5,216,14.9,392.23,4.59,35.4
284
+ 0.06129,20,3.33,1,0.4429,7.645,49.7,5.2119,5,216,14.9,377.07,3.01,46
285
+ 0.01501,90,1.21,1,0.401,7.923,24.8,5.885,1,198,13.6,395.52,3.16,50
286
+ 0.00906,90,2.97,0,0.4,7.088,20.8,7.3073,1,285,15.3,394.72,7.85,32.2
287
+ 0.01096,55,2.25,0,0.389,6.453,31.9,7.3073,1,300,15.3,394.72,8.23,22
288
+ 0.01965,80,1.76,0,0.385,6.23,NA,9.0892,1,241,18.2,341.6,12.93,20.1
289
+ 0.03871,52.5,5.32,0,0.405,6.209,31.3,7.3172,6,293,16.6,396.9,7.14,23.2
290
+ NA,52.5,5.32,0,0.405,6.315,45.6,7.3172,6,293,16.6,396.9,7.6,22.3
291
+ 0.04297,52.5,5.32,0,0.405,6.565,22.9,7.3172,6,293,16.6,371.72,9.51,24.8
292
+ 0.03502,80,4.95,0,0.411,6.861,27.9,5.1167,4,245,19.2,396.9,3.33,28.5
293
+ 0.07886,80,4.95,0,0.411,7.148,27.7,5.1167,4,245,19.2,396.9,3.56,37.3
294
+ 0.03615,80,NA,0,0.411,6.63,23.4,5.1167,4,245,19.2,396.9,4.7,27.9
295
+ 0.08265,0,13.92,0,0.437,6.127,18.4,5.5027,4,289,16,396.9,8.58,23.9
296
+ 0.08199,0,13.92,NA,0.437,6.009,42.3,5.5027,4,289,16,396.9,10.4,21.7
297
+ 0.12932,0,13.92,0,0.437,6.678,31.1,5.9604,4,289,16,396.9,6.27,28.6
298
+ 0.05372,0,13.92,0,0.437,6.549,51,5.9604,4,289,16,392.85,7.39,27.1
299
+ 0.14103,0,NA,0,0.437,5.79,58,6.32,4,289,16,396.9,15.84,20.3
300
+ 0.06466,70,2.24,0,0.4,6.345,20.1,7.8278,5,358,14.8,368.24,4.97,22.5
301
+ 0.05561,70,2.24,0,0.4,7.041,10,7.8278,5,358,14.8,371.58,4.74,29
302
+ 0.04417,70,2.24,0,0.4,6.871,47.4,7.8278,5,358,14.8,390.86,6.07,24.8
303
+ 0.03537,NA,6.09,0,0.433,6.59,40.4,5.4917,7,329,16.1,395.75,9.5,22
304
+ NA,34,6.09,0,0.433,6.495,18.4,5.4917,7,329,16.1,383.61,8.67,26.4
305
+ 0.1,NA,6.09,0,0.433,6.982,17.7,5.4917,7,329,16.1,390.43,4.86,33.1
306
+ 0.05515,33,2.18,0,0.472,7.236,41.1,4.022,7,222,18.4,393.68,6.93,36.1
307
+ 0.05479,33,NA,0,0.472,6.616,58.1,3.37,7,222,18.4,393.36,8.93,28.4
308
+ 0.07503,33,2.18,0,0.472,7.42,71.9,3.0992,7,222,18.4,396.9,6.47,33.4
309
+ 0.04932,33,2.18,0,0.472,6.849,70.3,3.1827,7,222,18.4,396.9,7.53,28.2
310
+ 0.49298,0,9.9,0,0.544,6.635,82.5,3.3175,4,304,18.4,396.9,4.54,22.8
311
+ 0.3494,0,9.9,0,0.544,5.972,76.7,3.1025,4,304,18.4,396.24,9.97,20.3
312
+ 2.63548,0,9.9,0,0.544,4.973,37.8,2.5194,4,304,18.4,350.45,12.64,16.1
313
+ 0.79041,0,9.9,0,0.544,6.122,52.8,2.6403,4,304,18.4,396.9,5.98,22.1
314
+ 0.26169,0,9.9,0,0.544,6.023,90.4,2.834,4,304,18.4,396.3,11.72,19.4
315
+ 0.26938,0,9.9,0,0.544,6.266,82.8,3.2628,4,304,18.4,393.39,7.9,21.6
316
+ 0.3692,0,9.9,0,0.544,6.567,87.3,3.6023,4,304,18.4,395.69,9.28,23.8
317
+ 0.25356,0,9.9,0,0.544,5.705,77.7,3.945,4,304,18.4,396.42,11.5,16.2
318
+ 0.31827,0,9.9,0,0.544,5.914,NA,3.9986,4,304,18.4,390.7,18.33,17.8
319
+ 0.24522,0,9.9,0,0.544,5.782,71.7,4.0317,4,304,18.4,396.9,15.94,19.8
320
+ 0.40202,0,9.9,0,0.544,6.382,67.2,3.5325,4,304,18.4,395.21,10.36,23.1
321
+ 0.47547,0,9.9,0,0.544,6.113,58.8,4.0019,4,304,18.4,396.23,12.73,21
322
+ 0.1676,0,7.38,0,0.493,6.426,52.3,4.5404,5,287,19.6,396.9,7.2,23.8
323
+ 0.18159,0,7.38,0,0.493,6.376,54.3,4.5404,5,287,19.6,396.9,6.87,23.1
324
+ 0.35114,0,7.38,0,0.493,6.041,49.9,4.7211,5,287,19.6,396.9,7.7,20.4
325
+ 0.28392,0,7.38,0,0.493,5.708,74.3,4.7211,5,287,19.6,391.13,11.74,18.5
326
+ 0.34109,0,7.38,0,0.493,6.415,40.1,4.7211,5,287,19.6,396.9,6.12,25
327
+ 0.19186,0,7.38,0,0.493,6.431,14.7,5.4159,5,287,19.6,393.68,5.08,24.6
328
+ 0.30347,0,7.38,0,0.493,6.312,28.9,5.4159,5,287,19.6,396.9,6.15,23
329
+ 0.24103,0,7.38,0,0.493,6.083,43.7,5.4159,5,287,19.6,396.9,12.79,22.2
330
+ 0.06617,0,3.24,0,0.46,5.868,25.8,5.2146,4,430,16.9,382.44,9.97,19.3
331
+ 0.06724,0,3.24,0,0.46,6.333,17.2,5.2146,4,430,16.9,375.21,7.34,22.6
332
+ 0.04544,NA,3.24,0,0.46,6.144,32.2,5.8736,4,430,16.9,368.57,9.09,19.8
333
+ 0.05023,35,6.06,0,0.4379,5.706,28.4,6.6407,1,304,16.9,394.02,12.43,17.1
334
+ 0.03466,NA,6.06,0,0.4379,6.031,23.3,6.6407,1,304,16.9,362.25,7.83,19.4
335
+ 0.05083,0,5.19,0,0.515,6.316,38.1,6.4584,5,224,20.2,389.71,5.68,22.2
336
+ 0.03738,0,5.19,0,0.515,6.31,38.5,6.4584,5,224,20.2,389.4,6.75,20.7
337
+ 0.03961,0,5.19,0,0.515,6.037,34.5,5.9853,5,224,20.2,396.9,8.01,21.1
338
+ 0.03427,0,5.19,0,0.515,5.869,46.3,5.2311,5,224,20.2,396.9,9.8,19.5
339
+ 0.03041,0,5.19,0,0.515,5.895,59.6,5.615,5,224,20.2,394.81,10.56,18.5
340
+ 0.03306,0,5.19,0,0.515,6.059,37.3,4.8122,5,224,20.2,396.14,8.51,20.6
341
+ 0.05497,0,5.19,0,0.515,5.985,45.4,4.8122,5,224,20.2,396.9,9.74,19
342
+ 0.06151,0,5.19,0,0.515,5.968,58.5,4.8122,5,224,20.2,396.9,9.29,18.7
343
+ 0.01301,35,1.52,0,0.442,7.241,49.3,7.0379,1,284,15.5,394.74,5.49,32.7
344
+ 0.02498,0,1.89,0,0.518,6.54,59.7,6.2669,1,422,15.9,389.96,8.65,16.5
345
+ 0.02543,55,3.78,0,0.484,6.696,56.4,5.7321,5,370,17.6,396.9,7.18,23.9
346
+ 0.03049,55,NA,0,0.484,6.874,28.1,6.4654,5,370,17.6,387.97,4.61,31.2
347
+ 0.03113,0,4.39,0,0.442,6.014,48.5,8.0136,3,352,18.8,385.64,10.53,17.5
348
+ 0.06162,0,4.39,0,0.442,5.898,52.3,8.0136,3,352,18.8,364.61,12.67,17.2
349
+ 0.0187,85,4.15,0,0.429,6.516,27.7,8.5353,4,351,17.9,392.43,6.36,23.1
350
+ 0.01501,80,2.01,0,0.435,6.635,29.7,8.344,4,280,17,390.94,5.99,24.5
351
+ 0.02899,40,1.25,0,0.429,6.939,34.5,8.7921,1,335,19.7,389.85,NA,26.6
352
+ 0.06211,NA,1.25,0,0.429,6.49,44.4,8.7921,1,335,19.7,396.9,NA,22.9
353
+ 0.0795,60,1.69,0,0.411,6.579,35.9,10.7103,4,411,18.3,370.78,5.49,24.1
354
+ 0.07244,60,1.69,0,0.411,5.884,18.5,10.7103,4,411,18.3,392.33,7.79,18.6
355
+ 0.01709,90,2.02,0,0.41,6.728,36.1,12.1265,5,187,17,384.46,4.5,30.1
356
+ 0.04301,80,1.91,0,0.413,5.663,21.9,10.5857,4,334,22,382.8,8.05,18.2
357
+ 0.10659,NA,1.91,0,0.413,5.936,NA,10.5857,4,334,22,376.04,5.57,20.6
358
+ 8.98296,0,18.1,1,0.77,6.212,97.4,2.1222,24,666,20.2,377.73,17.6,17.8
359
+ 3.8497,0,18.1,1,0.77,6.395,91,2.5052,24,666,20.2,391.34,13.27,21.7
360
+ 5.20177,0,18.1,1,0.77,6.127,83.4,2.7227,24,666,20.2,395.43,11.48,22.7
361
+ 4.26131,0,NA,0,0.77,6.112,81.3,2.5091,24,666,20.2,390.74,12.67,22.6
362
+ 4.54192,0,18.1,0,0.77,6.398,88,2.5182,24,666,20.2,374.56,7.79,25
363
+ 3.83684,0,18.1,0,0.77,6.251,91.1,2.2955,24,666,20.2,350.65,14.19,19.9
364
+ 3.67822,0,18.1,0,0.77,5.362,96.2,2.1036,24,666,20.2,380.79,10.19,20.8
365
+ 4.22239,0,18.1,1,0.77,5.803,89,1.9047,24,666,20.2,353.04,14.64,16.8
366
+ 3.47428,0,18.1,1,0.718,8.78,82.9,1.9047,24,666,20.2,354.55,5.29,21.9
367
+ 4.55587,0,18.1,0,0.718,3.561,87.9,1.6132,24,666,20.2,354.7,7.12,27.5
368
+ 3.69695,0,18.1,0,0.718,4.963,91.4,1.7523,24,666,20.2,316.03,14,21.9
369
+ 13.5222,0,18.1,NA,0.631,3.863,100,1.5106,24,666,20.2,131.42,13.33,23.1
370
+ 4.89822,0,18.1,0,0.631,4.97,NA,1.3325,24,666,20.2,375.52,3.26,50
371
+ NA,0,18.1,1,0.631,6.683,96.8,1.3567,24,666,20.2,375.33,3.73,50
372
+ 6.53876,0,18.1,1,0.631,7.016,97.5,1.2024,24,666,20.2,392.05,2.96,50
373
+ 9.2323,0,18.1,0,0.631,6.216,100,1.1691,24,666,20.2,366.15,9.53,50
374
+ 8.26725,0,18.1,1,0.668,5.875,89.6,1.1296,24,666,20.2,347.88,8.88,50
375
+ 11.1081,0,18.1,0,0.668,4.906,100,1.1742,24,666,20.2,396.9,34.77,13.8
376
+ 18.4982,0,18.1,0,0.668,4.138,100,1.137,24,666,20.2,396.9,37.97,13.8
377
+ 19.6091,NA,18.1,0,0.671,7.313,97.9,1.3163,24,666,20.2,396.9,13.44,15
378
+ 15.288,0,18.1,NA,0.671,6.649,93.3,1.3449,24,666,20.2,363.02,NA,13.9
379
+ 9.82349,0,18.1,0,0.671,6.794,98.8,1.358,24,666,20.2,396.9,21.24,13.3
380
+ 23.6482,0,18.1,0,0.671,6.38,96.2,1.3861,24,666,20.2,396.9,23.69,13.1
381
+ 17.8667,0,18.1,0,0.671,6.223,100,1.3861,24,666,20.2,393.74,21.78,10.2
382
+ 88.9762,0,18.1,0,0.671,6.968,91.9,1.4165,24,666,20.2,396.9,17.21,10.4
383
+ 15.8744,0,18.1,0,0.671,6.545,99.1,1.5192,24,666,20.2,396.9,21.08,10.9
384
+ 9.18702,0,18.1,0,0.7,5.536,100,1.5804,24,666,20.2,396.9,23.6,11.3
385
+ 7.99248,0,18.1,0,0.7,5.52,100,1.5331,24,666,20.2,396.9,NA,12.3
386
+ 20.0849,0,18.1,0,0.7,4.368,91.2,1.4395,24,666,20.2,285.83,30.63,8.8
387
+ 16.8118,0,18.1,0,0.7,5.277,98.1,1.4261,24,666,20.2,396.9,30.81,7.2
388
+ 24.3938,0,18.1,0,0.7,4.652,100,1.4672,24,666,20.2,396.9,28.28,10.5
389
+ 22.5971,0,18.1,0,0.7,5,89.5,1.5184,24,666,20.2,396.9,31.99,7.4
390
+ 14.3337,0,18.1,NA,0.7,4.88,100,1.5895,24,666,20.2,372.92,30.62,10.2
391
+ 8.15174,0,18.1,0,0.7,5.39,98.9,1.7281,24,666,20.2,396.9,20.85,11.5
392
+ 6.96215,0,18.1,0,0.7,5.713,97,1.9265,24,666,20.2,394.43,17.11,15.1
393
+ 5.29305,0,18.1,0,0.7,6.051,82.5,2.1678,24,666,20.2,378.38,18.76,23.2
394
+ 11.5779,0,18.1,0,0.7,5.036,97,1.77,24,666,20.2,396.9,25.68,9.7
395
+ NA,0,18.1,0,0.693,6.193,92.6,1.7912,24,666,20.2,396.9,15.17,13.8
396
+ NA,0,18.1,0,0.693,5.887,94.7,1.7821,24,666,20.2,396.9,16.35,12.7
397
+ 8.71675,0,18.1,0,0.693,6.471,98.8,1.7257,24,666,20.2,391.98,17.12,13.1
398
+ 5.87205,0,18.1,0,0.693,6.405,96,1.6768,24,666,20.2,396.9,19.37,12.5
399
+ 7.67202,0,18.1,0,0.693,5.747,98.9,1.6334,24,666,20.2,393.1,19.92,8.5
400
+ 38.3518,0,18.1,0,0.693,5.453,100,1.4896,24,666,20.2,396.9,30.59,5
401
+ 9.91655,0,18.1,0,0.693,5.852,77.8,1.5004,24,666,20.2,338.16,29.97,6.3
402
+ 25.0461,0,18.1,0,0.693,5.987,100,1.5888,24,666,20.2,396.9,26.77,5.6
403
+ 14.2362,0,18.1,NA,0.693,6.343,100,1.5741,24,666,20.2,396.9,20.32,7.2
404
+ 9.59571,0,18.1,0,0.693,6.404,100,1.639,24,666,20.2,376.11,20.31,12.1
405
+ 24.8017,0,18.1,0,0.693,5.349,96,1.7028,24,666,20.2,396.9,19.77,8.3
406
+ 41.5292,0,18.1,0,0.693,5.531,85.4,1.6074,24,666,20.2,329.46,27.38,8.5
407
+ 67.9208,0,18.1,0,0.693,5.683,100,1.4254,24,666,20.2,384.97,22.98,5
408
+ 20.7162,0,NA,0,0.659,4.138,100,1.1781,24,666,20.2,370.22,23.34,11.9
409
+ 11.9511,0,18.1,0,0.659,5.608,100,1.2852,24,666,20.2,332.09,NA,27.9
410
+ 7.40389,0,18.1,0,0.597,5.617,97.9,1.4547,24,666,20.2,314.64,26.4,17.2
411
+ NA,0,18.1,0,0.597,6.852,100,1.4655,24,666,20.2,179.36,19.78,27.5
412
+ 51.1358,0,18.1,0,0.597,5.757,100,1.413,24,666,20.2,2.6,10.11,15
413
+ 14.0507,0,18.1,0,0.597,6.657,100,1.5275,24,666,20.2,35.05,21.22,17.2
414
+ 18.811,0,18.1,0,0.597,4.628,100,1.5539,24,666,20.2,28.79,34.37,17.9
415
+ 28.6558,0,18.1,0,0.597,5.155,100,1.5894,24,666,20.2,210.97,20.08,16.3
416
+ 45.7461,0,18.1,0,0.693,4.519,100,1.6582,24,666,20.2,88.27,36.98,7
417
+ 18.0846,0,18.1,0,0.679,6.434,100,1.8347,24,666,20.2,27.25,29.05,7.2
418
+ 10.8342,0,18.1,0,0.679,6.782,90.8,1.8195,24,666,20.2,21.57,25.79,7.5
419
+ 25.9406,0,18.1,0,0.679,5.304,89.1,1.6475,24,666,20.2,127.36,26.64,10.4
420
+ 73.5341,0,18.1,0,0.679,5.957,100,1.8026,24,666,20.2,16.45,20.62,8.8
421
+ 11.8123,0,18.1,0,0.718,6.824,76.5,1.794,24,666,20.2,48.45,22.74,8.4
422
+ 11.0874,0,18.1,0,0.718,6.411,100,1.8589,24,666,20.2,318.75,15.02,16.7
423
+ 7.02259,0,18.1,0,0.718,6.006,95.3,1.8746,24,666,20.2,319.98,15.7,14.2
424
+ 12.0482,0,18.1,0,0.614,5.648,87.6,1.9512,24,666,20.2,291.55,14.1,20.8
425
+ 7.05042,0,18.1,0,0.614,6.103,NA,2.0218,24,666,20.2,2.52,23.29,13.4
426
+ 8.79212,0,18.1,0,0.584,5.565,70.6,2.0635,24,666,20.2,3.65,17.16,11.7
427
+ 15.8603,0,18.1,0,0.679,5.896,95.4,1.9096,24,666,20.2,7.68,24.39,8.3
428
+ NA,0,18.1,0,0.584,5.837,59.7,1.9976,24,666,20.2,24.65,15.69,10.2
429
+ 37.6619,NA,18.1,0,0.679,6.202,78.7,1.8629,24,666,20.2,18.82,14.52,10.9
430
+ 7.36711,0,18.1,0,0.679,6.193,78.1,1.9356,24,666,20.2,96.73,21.52,11
431
+ 9.33889,0,18.1,0,0.679,6.38,NA,1.9682,24,666,20.2,60.72,24.08,9.5
432
+ NA,0,18.1,0,0.584,6.348,86.1,2.0527,24,666,20.2,83.45,17.64,14.5
433
+ 10.0623,0,18.1,0,0.584,6.833,94.3,2.0882,24,666,20.2,81.33,19.69,14.1
434
+ 6.44405,0,18.1,0,0.584,6.425,74.8,2.2004,24,666,20.2,97.95,12.03,16.1
435
+ 5.58107,0,18.1,0,0.713,6.436,87.9,2.3158,24,666,20.2,100.19,16.22,14.3
436
+ 13.9134,0,18.1,0,0.713,6.208,95,2.2222,24,666,20.2,100.63,15.17,11.7
437
+ 11.1604,0,18.1,0,0.74,6.629,94.6,2.1247,24,666,20.2,109.85,23.27,13.4
438
+ 14.4208,0,18.1,0,0.74,6.461,93.3,2.0026,24,666,20.2,27.49,18.05,9.6
439
+ 15.1772,0,18.1,0,0.74,6.152,100,1.9142,24,666,20.2,9.32,26.45,8.7
440
+ 13.6781,0,18.1,0,0.74,5.935,87.9,1.8206,24,666,20.2,68.95,34.02,8.4
441
+ 9.39063,0,18.1,0,0.74,5.627,93.9,1.8172,24,666,20.2,396.9,22.88,12.8
442
+ 22.0511,0,18.1,0,0.74,5.818,92.4,1.8662,24,666,20.2,391.45,NA,10.5
443
+ 9.72418,0,18.1,0,0.74,6.406,97.2,2.0651,24,666,20.2,385.96,NA,17.1
444
+ 5.66637,0,18.1,NA,0.74,6.219,100,2.0048,24,666,20.2,395.69,16.59,18.4
445
+ 9.96654,0,18.1,0,0.74,6.485,100,1.9784,24,666,20.2,386.73,18.85,15.4
446
+ 12.8023,0,18.1,0,0.74,5.854,96.6,1.8956,24,666,20.2,240.52,23.79,10.8
447
+ 10.6718,0,18.1,0,0.74,6.459,94.8,1.9879,24,666,20.2,43.06,23.98,11.8
448
+ 6.28807,0,18.1,0,0.74,6.341,96.4,2.072,24,666,20.2,318.01,17.79,14.9
449
+ 9.92485,0,18.1,0,0.74,6.251,96.6,2.198,24,666,20.2,388.52,16.44,12.6
450
+ 9.32909,0,18.1,0,0.713,6.185,98.7,2.2616,24,666,20.2,396.9,18.13,14.1
451
+ 7.52601,0,18.1,0,0.713,6.417,98.3,2.185,24,666,20.2,304.21,19.31,13
452
+ 6.71772,0,18.1,NA,0.713,6.749,92.6,2.3236,24,666,20.2,0.32,17.44,13.4
453
+ 5.44114,0,18.1,0,0.713,6.655,NA,2.3552,24,666,20.2,355.29,17.73,15.2
454
+ 5.09017,0,18.1,0,0.713,6.297,91.8,2.3682,24,666,20.2,385.09,17.27,16.1
455
+ 8.24809,0,NA,0,0.713,7.393,99.3,2.4527,24,666,20.2,375.87,16.74,17.8
456
+ 9.51363,0,18.1,0,0.713,6.728,94.1,2.4961,24,666,20.2,6.68,18.71,14.9
457
+ 4.75237,0,18.1,0,0.713,6.525,86.5,2.4358,24,666,20.2,50.92,18.13,14.1
458
+ 4.66883,0,18.1,0,0.713,5.976,87.9,2.5806,24,666,20.2,10.48,19.01,12.7
459
+ 8.20058,0,18.1,0,0.713,5.936,80.3,2.7792,24,666,20.2,3.5,16.94,13.5
460
+ 7.75223,NA,NA,0,0.713,6.301,83.7,2.7831,24,666,20.2,272.21,16.23,14.9
461
+ 6.80117,0,18.1,0,0.713,6.081,84.4,2.7175,24,666,20.2,396.9,14.7,20
462
+ NA,0,18.1,0,0.713,6.701,90,2.5975,24,666,20.2,255.23,16.42,16.4
463
+ 3.69311,0,18.1,0,0.713,6.376,88.4,2.5671,24,666,20.2,391.43,14.65,17.7
464
+ 6.65492,0,18.1,0,0.713,6.317,83,2.7344,24,666,20.2,396.9,13.99,19.5
465
+ 5.82115,0,18.1,0,0.713,6.513,89.9,2.8016,24,666,20.2,393.82,10.29,20.2
466
+ 7.83932,0,18.1,0,0.655,6.209,65.4,2.9634,24,666,20.2,396.9,13.22,21.4
467
+ NA,0,18.1,NA,0.655,5.759,48.2,3.0665,24,666,20.2,334.4,14.13,19.9
468
+ 3.77498,0,NA,0,0.655,5.952,84.7,2.8715,24,666,20.2,22.01,17.15,19
469
+ 4.42228,0,18.1,0,0.584,6.003,94.5,2.5403,24,666,20.2,331.29,21.32,19.1
470
+ 15.5757,0,18.1,0,0.58,5.926,71,2.9084,24,666,20.2,368.74,18.13,19.1
471
+ 13.0751,0,18.1,0,0.58,5.713,56.7,2.8237,24,666,20.2,396.9,14.76,20.1
472
+ 4.34879,0,18.1,0,0.58,6.167,84,3.0334,24,666,20.2,396.9,16.29,19.9
473
+ 4.03841,0,18.1,0,0.532,6.229,90.7,3.0993,24,666,20.2,395.33,12.87,19.6
474
+ 3.56868,0,18.1,0,0.58,6.437,75,2.8965,24,666,20.2,393.37,14.36,23.2
475
+ 4.64689,0,18.1,0,0.614,6.98,67.6,2.5329,24,666,20.2,374.68,NA,29.8
476
+ 8.05579,0,18.1,0,0.584,5.427,95.4,2.4298,24,666,20.2,352.58,18.14,13.8
477
+ 6.39312,0,18.1,0,0.584,6.162,97.4,2.206,24,666,20.2,302.76,24.1,13.3
478
+ 4.87141,0,18.1,0,0.614,6.484,93.6,2.3053,24,666,20.2,396.21,18.68,16.7
479
+ 15.0234,0,18.1,0,0.614,5.304,97.3,2.1007,24,666,20.2,349.48,24.91,12
480
+ 10.233,0,18.1,0,0.614,6.185,96.7,2.1705,24,666,20.2,379.7,18.03,14.6
481
+ 14.3337,0,18.1,NA,0.614,6.229,88,1.9512,24,666,20.2,383.32,13.11,21.4
482
+ 5.82401,0,18.1,0,0.532,6.242,64.7,3.4242,24,666,20.2,396.9,10.74,23
483
+ 5.70818,0,18.1,0,0.532,6.75,74.9,3.3317,24,666,20.2,393.07,7.74,23.7
484
+ 5.73116,0,18.1,NA,0.532,7.061,77,3.4106,24,666,20.2,395.28,7.01,25
485
+ 2.81838,0,18.1,0,0.532,5.762,40.3,4.0983,24,666,20.2,392.92,10.42,21.8
486
+ 2.37857,0,18.1,0,0.583,5.871,41.9,3.724,24,666,20.2,370.73,13.34,20.6
487
+ 3.67367,0,18.1,0,0.583,6.312,51.9,3.9917,24,666,20.2,388.62,10.58,21.2
488
+ 5.69175,0,18.1,0,0.583,6.114,79.8,3.5459,24,666,20.2,392.68,14.98,19.1
489
+ 4.83567,0,18.1,0,0.583,5.905,53.2,3.1523,24,666,20.2,388.22,11.45,20.6
490
+ 0.15086,0,27.74,0,0.609,5.454,92.7,1.8209,4,711,20.1,395.09,18.06,15.2
491
+ 0.18337,0,27.74,0,0.609,5.414,98.3,1.7554,4,711,20.1,344.05,23.97,7
492
+ 0.20746,0,27.74,0,0.609,5.093,98,1.8226,4,711,20.1,318.43,29.68,8.1
493
+ 0.10574,0,27.74,0,0.609,5.983,98.8,1.8681,4,711,20.1,390.11,18.07,13.6
494
+ 0.11132,0,27.74,0,0.609,5.983,83.5,2.1099,4,711,20.1,396.9,13.35,20.1
495
+ 0.17331,0,9.69,0,0.585,5.707,54,2.3817,6,391,19.2,396.9,12.01,21.8
496
+ 0.27957,0,9.69,0,0.585,5.926,42.6,2.3817,6,391,19.2,396.9,13.59,24.5
497
+ 0.17899,0,9.69,0,0.585,5.67,28.8,2.7986,6,391,19.2,393.29,17.6,23.1
498
+ 0.2896,0,9.69,0,0.585,5.39,72.9,2.7986,6,391,19.2,396.9,21.14,19.7
499
+ 0.26838,0,9.69,0,0.585,5.794,70.6,2.8927,6,391,19.2,396.9,14.1,18.3
500
+ 0.23912,0,9.69,0,0.585,6.019,65.3,2.4091,6,391,19.2,396.9,12.92,21.2
501
+ 0.17783,0,9.69,0,0.585,5.569,73.5,2.3999,6,391,19.2,395.77,15.1,17.5
502
+ 0.22438,0,9.69,0,0.585,6.027,79.7,2.4982,6,391,19.2,396.9,14.33,16.8
503
+ 0.06263,0,11.93,0,0.573,6.593,69.1,2.4786,1,273,21,391.99,NA,22.4
504
+ 0.04527,0,11.93,0,0.573,6.12,76.7,2.2875,1,273,21,396.9,9.08,20.6
505
+ 0.06076,0,11.93,0,0.573,6.976,91,2.1675,1,273,21,396.9,5.64,23.9
506
+ 0.10959,0,11.93,0,0.573,6.794,89.3,2.3889,1,273,21,393.45,6.48,22
507
+ 0.04741,0,11.93,0,0.573,6.03,NA,2.505,1,273,21,396.9,7.88,11.9
data/.ipynb_checkpoints/iris-checkpoint.csv ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ SepalLength,SepalWidth,PetalLength,PetalWidth,species
2
+ 6.4,2.8,5.6,2.2,2x
3
+ 5,2.3,3.3,1,1
4
+ 4.9,2.5,4.5,1.7,2x
5
+ 4.9,3.1,1.5,0.1,0
6
+ 5.7,3.8,1.7,0.3,0
7
+ 4.4,3.2,1.3,0.2,0
8
+ 5.4,3.4,1.5,0.4,0
9
+ 6.9,3.1,5.1,2.3,2x
10
+ 6.7,3.1,4.4,1.4,1
11
+ 5.1,3.7,1.5,0.4,0
12
+ 5.2,2.7,3.9,1.4,1
13
+ 6.9,3.1,4.9,1.5,1
14
+ 5.8,4,1.2,0.2,0
15
+ 5.4,3.9,1.7,0.4,0
16
+ 7.7,3.8,6.7,2.2,2x
17
+ 6.3,3.3,4.7,1.6,1
18
+ 6.8,3.2,5.9,2.3,2x
19
+ 7.6,3,6.6,2.1,2x
20
+ 6.4,3.2,5.3,2.3,2x
21
+ 5.7,4.4,1.5,0.4,0
22
+ 6.7,3.3,5.7,2.1,2x
23
+ 6.4,2.8,5.6,2.1,2x
24
+ 5.4,3.9,1.3,0.4,0
25
+ 6.1,2.6,5.6,1.4,2x
26
+ 7.2,3,5.8,1.6,2x
27
+ 5.2,3.5,1.5,0.2,0
28
+ 5.8,2.6,4,1.2,1
29
+ 5.9,3,5.1,1.8,2x
30
+ 5.4,3,4.5,1.5,1
31
+ 6.7,3,5,1.7,1
32
+ 6.3,2.3,4.4,1.3,1
33
+ 5.1,2.5,3,1.1,1
34
+ 6.4,3.2,4.5,1.5,1
35
+ 6.8,3,5.5,2.1,2x
36
+ 6.2,2.8,4.8,1.8,2x
37
+ 6.9,3.2,5.7,2.3,2x
38
+ 6.5,3.2,5.1,2,2x
39
+ 5.8,2.8,5.1,2.4,2x
40
+ 5.1,3.8,1.5,0.3,0
41
+ 4.8,3,1.4,0.3,0
42
+ 7.9,3.8,6.4,2,2x
43
+ 5.8,2.7,5.1,1.9,2x
44
+ 6.7,3,5.2,2.3,2x
45
+ 5.1,3.8,1.9,0.4,0
46
+ 4.7,3.2,1.6,0.2,0
47
+ 6,2.2,5,1.5,2x
48
+ 4.8,3.4,1.6,0.2,0
49
+ 7.7,2.6,6.9,2.3,2x
50
+ 4.6,3.6,1,0.2,0
51
+ 7.2,3.2,6,1.8,2x
52
+ 5,3.3,1.4,0.2,0
53
+ 6.6,3,4.4,1.4,1
54
+ 6.1,2.8,4,1.3,1
55
+ 5,3.2,1.2,0.2,0
56
+ 7,3.2,4.7,1.4,1
57
+ 6,3,4.8,1.8,2x
58
+ 7.4,2.8,6.1,1.9,2x
59
+ 5.8,2.7,5.1,1.9,2x
60
+ 6.2,3.4,5.4,2.3,2x
61
+ 5,2,3.5,1,1
62
+ 5.6,2.5,3.9,1.1,1
63
+ 6.7,3.1,5.6,2.4,2x
64
+ 6.3,2.5,5,1.9,2x
65
+ 6.4,3.1,5.5,1.8,2x
66
+ 6.2,2.2,4.5,1.5,1
67
+ 7.3,2.9,6.3,1.8,2x
68
+ 4.4,3,1.3,0.2,0
69
+ 7.2,3.6,6.1,2.5,2x
70
+ 6.5,3,5.5,1.8,2x
71
+ 5,3.4,1.5,0.2,0
72
+ 4.7,3.2,1.3,0.2,0
73
+ 6.6,2.9,4.6,1.3,1
74
+ 5.5,3.5,1.3,0.2,0
75
+ 7.7,3,6.1,2.3,2x
76
+ 6.1,3,4.9,1.8,2x
77
+ 4.9,3.1,1.5,0.1,0
78
+ 5.5,2.4,3.8,1.1,1
79
+ 5.7,2.9,4.2,1.3,1
80
+ 6,2.9,4.5,1.5,1
81
+ 6.4,2.7,5.3,1.9,2x
82
+ 5.4,3.7,1.5,0.2,0
83
+ 6.1,2.9,4.7,1.4,1
84
+ 6.5,2.8,4.6,1.5,1
85
+ 5.6,2.7,4.2,1.3,1
86
+ 6.3,3.4,5.6,2.4,2x
87
+ 4.9,3.1,1.5,0.1,0
88
+ 6.8,2.8,4.8,1.4,1
89
+ 5.7,2.8,4.5,1.3,1
90
+ 6,2.7,5.1,1.6,1
91
+ 5,3.5,1.3,0.3,0
92
+ 6.5,3,5.2,2,2x
93
+ 6.1,2.8,4.7,1.2,1
94
+ 5.1,3.5,1.4,0.3,0
95
+ 4.6,3.1,1.5,0.2,0
96
+ 6.5,3,5.8,2.2,2x
97
+ 4.6,3.4,1.4,0.3,0
98
+ 4.6,3.2,1.4,0.2,0
99
+ 7.7,2.8,6.7,2,2x
100
+ 5.9,3.2,4.8,1.8,1
101
+ 5.1,3.8,1.6,0.2,0
102
+ 4.9,3,1.4,0.2,0
103
+ 4.9,2.4,3.3,1,1
104
+ 4.5,2.3,1.3,0.3,0
105
+ 5.8,2.7,4.1,1,1
106
+ 5,3.4,1.6,0.4,0
107
+ 5.2,3.4,1.4,0.2,0
108
+ 5.3,3.7,1.5,0.2,0
109
+ 5,3.6,1.4,0.2,0
110
+ 5.6,2.9,3.6,1.3,1
111
+ 4.8,3.1,1.6,0.2,0
112
+ 6.3,2.7,4.9,1.8,2x
113
+ 5.7,2.8,4.1,1.3,1
114
+ 5,3,1.6,0.2,0
115
+ 6.3,3.3,6,2.5,2x
116
+ 5,3.5,1.6,0.6,0
117
+ 5.5,2.6,4.4,1.2,1
118
+ 5.7,3,4.2,1.2,1
119
+ 4.4,2.9,1.4,0.2,0
120
+ 4.8,3,1.4,0.1,0
121
+ 5.5,2.4,3.7,1,1
122
+ 5.9,3,4.2,1.5,1
123
+ 6.9,3.1,5.4,2.1,2x
124
+ 5.1,3.3,1.7,0.5,0
125
+ 6,3.4,4.5,1.6,1
126
+ 5.5,2.5,4,1.3,1
127
+ 6.2,2.9,4.3,1.3,1
128
+ 5.5,4.2,1.4,0.2,0
129
+ 6.3,2.8,5.1,1.5,2x
130
+ 5.6,3,4.1,1.3,1
131
+ 6.7,2.5,5.8,1.8,2x
132
+ 7.1,3,5.9,2.1,2x
133
+ 4.3,3,1.1,0.1,0
134
+ 5.6,2.8,4.9,2,2x
135
+ 5.5,2.3,4,1.3,1
136
+ 6,2.2,4,1,1
137
+ 5.1,3.5,1.4,0.2,0
138
+ 5.7,2.6,3.5,1,1
139
+ 4.8,3.4,1.9,0.2,0
140
+ 5.1,3.4,1.5,0.2,0
141
+ 5.7,2.5,5,2,2x
142
+ 5.4,3.4,1.7,0.2,0
143
+ 5.6,3,4.5,1.5,1
144
+ 6.3,2.9,5.6,1.8,2x
145
+ 6.3,2.5,4.9,1.5,1
146
+ 5.8,2.7,3.9,1.2,1
147
+ 6.1,3,4.6,1.4,1
148
+ 5.2,4.1,1.5,0.1,0
149
+ 6.7,3.1,4.7,1.5,1
150
+ 6.7,3.3,5.7,2.5,2x
151
+ 6.4,2.9,4.3,1.3,1
data/.ipynb_checkpoints/samples-checkpoint.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0998faf4e5f49dcfeb12b1f049cd1f28018ee497848311faa9041c0f913dcb01
3
+ size 10559289
data/seaborn/.ipynb_checkpoints/titanic-checkpoint.csv ADDED
@@ -0,0 +1,892 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ survived,pclass,sex,age,sibsp,parch,fare,embarked,class,who,adult_male,deck,embark_town,alive,alone
2
+ 0,3,male,22.0,1,0,7.25,S,Third,man,True,,Southampton,no,False
3
+ 1,1,female,38.0,1,0,71.2833,C,First,woman,False,C,Cherbourg,yes,False
4
+ 1,3,female,26.0,0,0,7.925,S,Third,woman,False,,Southampton,yes,True
5
+ 1,1,female,35.0,1,0,53.1,S,First,woman,False,C,Southampton,yes,False
6
+ 0,3,male,35.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
7
+ 0,3,male,,0,0,8.4583,Q,Third,man,True,,Queenstown,no,True
8
+ 0,1,male,54.0,0,0,51.8625,S,First,man,True,E,Southampton,no,True
9
+ 0,3,male,2.0,3,1,21.075,S,Third,child,False,,Southampton,no,False
10
+ 1,3,female,27.0,0,2,11.1333,S,Third,woman,False,,Southampton,yes,False
11
+ 1,2,female,14.0,1,0,30.0708,C,Second,child,False,,Cherbourg,yes,False
12
+ 1,3,female,4.0,1,1,16.7,S,Third,child,False,G,Southampton,yes,False
13
+ 1,1,female,58.0,0,0,26.55,S,First,woman,False,C,Southampton,yes,True
14
+ 0,3,male,20.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
15
+ 0,3,male,39.0,1,5,31.275,S,Third,man,True,,Southampton,no,False
16
+ 0,3,female,14.0,0,0,7.8542,S,Third,child,False,,Southampton,no,True
17
+ 1,2,female,55.0,0,0,16.0,S,Second,woman,False,,Southampton,yes,True
18
+ 0,3,male,2.0,4,1,29.125,Q,Third,child,False,,Queenstown,no,False
19
+ 1,2,male,,0,0,13.0,S,Second,man,True,,Southampton,yes,True
20
+ 0,3,female,31.0,1,0,18.0,S,Third,woman,False,,Southampton,no,False
21
+ 1,3,female,,0,0,7.225,C,Third,woman,False,,Cherbourg,yes,True
22
+ 0,2,male,35.0,0,0,26.0,S,Second,man,True,,Southampton,no,True
23
+ 1,2,male,34.0,0,0,13.0,S,Second,man,True,D,Southampton,yes,True
24
+ 1,3,female,15.0,0,0,8.0292,Q,Third,child,False,,Queenstown,yes,True
25
+ 1,1,male,28.0,0,0,35.5,S,First,man,True,A,Southampton,yes,True
26
+ 0,3,female,8.0,3,1,21.075,S,Third,child,False,,Southampton,no,False
27
+ 1,3,female,38.0,1,5,31.3875,S,Third,woman,False,,Southampton,yes,False
28
+ 0,3,male,,0,0,7.225,C,Third,man,True,,Cherbourg,no,True
29
+ 0,1,male,19.0,3,2,263.0,S,First,man,True,C,Southampton,no,False
30
+ 1,3,female,,0,0,7.8792,Q,Third,woman,False,,Queenstown,yes,True
31
+ 0,3,male,,0,0,7.8958,S,Third,man,True,,Southampton,no,True
32
+ 0,1,male,40.0,0,0,27.7208,C,First,man,True,,Cherbourg,no,True
33
+ 1,1,female,,1,0,146.5208,C,First,woman,False,B,Cherbourg,yes,False
34
+ 1,3,female,,0,0,7.75,Q,Third,woman,False,,Queenstown,yes,True
35
+ 0,2,male,66.0,0,0,10.5,S,Second,man,True,,Southampton,no,True
36
+ 0,1,male,28.0,1,0,82.1708,C,First,man,True,,Cherbourg,no,False
37
+ 0,1,male,42.0,1,0,52.0,S,First,man,True,,Southampton,no,False
38
+ 1,3,male,,0,0,7.2292,C,Third,man,True,,Cherbourg,yes,True
39
+ 0,3,male,21.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
40
+ 0,3,female,18.0,2,0,18.0,S,Third,woman,False,,Southampton,no,False
41
+ 1,3,female,14.0,1,0,11.2417,C,Third,child,False,,Cherbourg,yes,False
42
+ 0,3,female,40.0,1,0,9.475,S,Third,woman,False,,Southampton,no,False
43
+ 0,2,female,27.0,1,0,21.0,S,Second,woman,False,,Southampton,no,False
44
+ 0,3,male,,0,0,7.8958,C,Third,man,True,,Cherbourg,no,True
45
+ 1,2,female,3.0,1,2,41.5792,C,Second,child,False,,Cherbourg,yes,False
46
+ 1,3,female,19.0,0,0,7.8792,Q,Third,woman,False,,Queenstown,yes,True
47
+ 0,3,male,,0,0,8.05,S,Third,man,True,,Southampton,no,True
48
+ 0,3,male,,1,0,15.5,Q,Third,man,True,,Queenstown,no,False
49
+ 1,3,female,,0,0,7.75,Q,Third,woman,False,,Queenstown,yes,True
50
+ 0,3,male,,2,0,21.6792,C,Third,man,True,,Cherbourg,no,False
51
+ 0,3,female,18.0,1,0,17.8,S,Third,woman,False,,Southampton,no,False
52
+ 0,3,male,7.0,4,1,39.6875,S,Third,child,False,,Southampton,no,False
53
+ 0,3,male,21.0,0,0,7.8,S,Third,man,True,,Southampton,no,True
54
+ 1,1,female,49.0,1,0,76.7292,C,First,woman,False,D,Cherbourg,yes,False
55
+ 1,2,female,29.0,1,0,26.0,S,Second,woman,False,,Southampton,yes,False
56
+ 0,1,male,65.0,0,1,61.9792,C,First,man,True,B,Cherbourg,no,False
57
+ 1,1,male,,0,0,35.5,S,First,man,True,C,Southampton,yes,True
58
+ 1,2,female,21.0,0,0,10.5,S,Second,woman,False,,Southampton,yes,True
59
+ 0,3,male,28.5,0,0,7.2292,C,Third,man,True,,Cherbourg,no,True
60
+ 1,2,female,5.0,1,2,27.75,S,Second,child,False,,Southampton,yes,False
61
+ 0,3,male,11.0,5,2,46.9,S,Third,child,False,,Southampton,no,False
62
+ 0,3,male,22.0,0,0,7.2292,C,Third,man,True,,Cherbourg,no,True
63
+ 1,1,female,38.0,0,0,80.0,,First,woman,False,B,,yes,True
64
+ 0,1,male,45.0,1,0,83.475,S,First,man,True,C,Southampton,no,False
65
+ 0,3,male,4.0,3,2,27.9,S,Third,child,False,,Southampton,no,False
66
+ 0,1,male,,0,0,27.7208,C,First,man,True,,Cherbourg,no,True
67
+ 1,3,male,,1,1,15.2458,C,Third,man,True,,Cherbourg,yes,False
68
+ 1,2,female,29.0,0,0,10.5,S,Second,woman,False,F,Southampton,yes,True
69
+ 0,3,male,19.0,0,0,8.1583,S,Third,man,True,,Southampton,no,True
70
+ 1,3,female,17.0,4,2,7.925,S,Third,woman,False,,Southampton,yes,False
71
+ 0,3,male,26.0,2,0,8.6625,S,Third,man,True,,Southampton,no,False
72
+ 0,2,male,32.0,0,0,10.5,S,Second,man,True,,Southampton,no,True
73
+ 0,3,female,16.0,5,2,46.9,S,Third,woman,False,,Southampton,no,False
74
+ 0,2,male,21.0,0,0,73.5,S,Second,man,True,,Southampton,no,True
75
+ 0,3,male,26.0,1,0,14.4542,C,Third,man,True,,Cherbourg,no,False
76
+ 1,3,male,32.0,0,0,56.4958,S,Third,man,True,,Southampton,yes,True
77
+ 0,3,male,25.0,0,0,7.65,S,Third,man,True,F,Southampton,no,True
78
+ 0,3,male,,0,0,7.8958,S,Third,man,True,,Southampton,no,True
79
+ 0,3,male,,0,0,8.05,S,Third,man,True,,Southampton,no,True
80
+ 1,2,male,0.83,0,2,29.0,S,Second,child,False,,Southampton,yes,False
81
+ 1,3,female,30.0,0,0,12.475,S,Third,woman,False,,Southampton,yes,True
82
+ 0,3,male,22.0,0,0,9.0,S,Third,man,True,,Southampton,no,True
83
+ 1,3,male,29.0,0,0,9.5,S,Third,man,True,,Southampton,yes,True
84
+ 1,3,female,,0,0,7.7875,Q,Third,woman,False,,Queenstown,yes,True
85
+ 0,1,male,28.0,0,0,47.1,S,First,man,True,,Southampton,no,True
86
+ 1,2,female,17.0,0,0,10.5,S,Second,woman,False,,Southampton,yes,True
87
+ 1,3,female,33.0,3,0,15.85,S,Third,woman,False,,Southampton,yes,False
88
+ 0,3,male,16.0,1,3,34.375,S,Third,man,True,,Southampton,no,False
89
+ 0,3,male,,0,0,8.05,S,Third,man,True,,Southampton,no,True
90
+ 1,1,female,23.0,3,2,263.0,S,First,woman,False,C,Southampton,yes,False
91
+ 0,3,male,24.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
92
+ 0,3,male,29.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
93
+ 0,3,male,20.0,0,0,7.8542,S,Third,man,True,,Southampton,no,True
94
+ 0,1,male,46.0,1,0,61.175,S,First,man,True,E,Southampton,no,False
95
+ 0,3,male,26.0,1,2,20.575,S,Third,man,True,,Southampton,no,False
96
+ 0,3,male,59.0,0,0,7.25,S,Third,man,True,,Southampton,no,True
97
+ 0,3,male,,0,0,8.05,S,Third,man,True,,Southampton,no,True
98
+ 0,1,male,71.0,0,0,34.6542,C,First,man,True,A,Cherbourg,no,True
99
+ 1,1,male,23.0,0,1,63.3583,C,First,man,True,D,Cherbourg,yes,False
100
+ 1,2,female,34.0,0,1,23.0,S,Second,woman,False,,Southampton,yes,False
101
+ 0,2,male,34.0,1,0,26.0,S,Second,man,True,,Southampton,no,False
102
+ 0,3,female,28.0,0,0,7.8958,S,Third,woman,False,,Southampton,no,True
103
+ 0,3,male,,0,0,7.8958,S,Third,man,True,,Southampton,no,True
104
+ 0,1,male,21.0,0,1,77.2875,S,First,man,True,D,Southampton,no,False
105
+ 0,3,male,33.0,0,0,8.6542,S,Third,man,True,,Southampton,no,True
106
+ 0,3,male,37.0,2,0,7.925,S,Third,man,True,,Southampton,no,False
107
+ 0,3,male,28.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
108
+ 1,3,female,21.0,0,0,7.65,S,Third,woman,False,,Southampton,yes,True
109
+ 1,3,male,,0,0,7.775,S,Third,man,True,,Southampton,yes,True
110
+ 0,3,male,38.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
111
+ 1,3,female,,1,0,24.15,Q,Third,woman,False,,Queenstown,yes,False
112
+ 0,1,male,47.0,0,0,52.0,S,First,man,True,C,Southampton,no,True
113
+ 0,3,female,14.5,1,0,14.4542,C,Third,child,False,,Cherbourg,no,False
114
+ 0,3,male,22.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
115
+ 0,3,female,20.0,1,0,9.825,S,Third,woman,False,,Southampton,no,False
116
+ 0,3,female,17.0,0,0,14.4583,C,Third,woman,False,,Cherbourg,no,True
117
+ 0,3,male,21.0,0,0,7.925,S,Third,man,True,,Southampton,no,True
118
+ 0,3,male,70.5,0,0,7.75,Q,Third,man,True,,Queenstown,no,True
119
+ 0,2,male,29.0,1,0,21.0,S,Second,man,True,,Southampton,no,False
120
+ 0,1,male,24.0,0,1,247.5208,C,First,man,True,B,Cherbourg,no,False
121
+ 0,3,female,2.0,4,2,31.275,S,Third,child,False,,Southampton,no,False
122
+ 0,2,male,21.0,2,0,73.5,S,Second,man,True,,Southampton,no,False
123
+ 0,3,male,,0,0,8.05,S,Third,man,True,,Southampton,no,True
124
+ 0,2,male,32.5,1,0,30.0708,C,Second,man,True,,Cherbourg,no,False
125
+ 1,2,female,32.5,0,0,13.0,S,Second,woman,False,E,Southampton,yes,True
126
+ 0,1,male,54.0,0,1,77.2875,S,First,man,True,D,Southampton,no,False
127
+ 1,3,male,12.0,1,0,11.2417,C,Third,child,False,,Cherbourg,yes,False
128
+ 0,3,male,,0,0,7.75,Q,Third,man,True,,Queenstown,no,True
129
+ 1,3,male,24.0,0,0,7.1417,S,Third,man,True,,Southampton,yes,True
130
+ 1,3,female,,1,1,22.3583,C,Third,woman,False,F,Cherbourg,yes,False
131
+ 0,3,male,45.0,0,0,6.975,S,Third,man,True,,Southampton,no,True
132
+ 0,3,male,33.0,0,0,7.8958,C,Third,man,True,,Cherbourg,no,True
133
+ 0,3,male,20.0,0,0,7.05,S,Third,man,True,,Southampton,no,True
134
+ 0,3,female,47.0,1,0,14.5,S,Third,woman,False,,Southampton,no,False
135
+ 1,2,female,29.0,1,0,26.0,S,Second,woman,False,,Southampton,yes,False
136
+ 0,2,male,25.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
137
+ 0,2,male,23.0,0,0,15.0458,C,Second,man,True,,Cherbourg,no,True
138
+ 1,1,female,19.0,0,2,26.2833,S,First,woman,False,D,Southampton,yes,False
139
+ 0,1,male,37.0,1,0,53.1,S,First,man,True,C,Southampton,no,False
140
+ 0,3,male,16.0,0,0,9.2167,S,Third,man,True,,Southampton,no,True
141
+ 0,1,male,24.0,0,0,79.2,C,First,man,True,B,Cherbourg,no,True
142
+ 0,3,female,,0,2,15.2458,C,Third,woman,False,,Cherbourg,no,False
143
+ 1,3,female,22.0,0,0,7.75,S,Third,woman,False,,Southampton,yes,True
144
+ 1,3,female,24.0,1,0,15.85,S,Third,woman,False,,Southampton,yes,False
145
+ 0,3,male,19.0,0,0,6.75,Q,Third,man,True,,Queenstown,no,True
146
+ 0,2,male,18.0,0,0,11.5,S,Second,man,True,,Southampton,no,True
147
+ 0,2,male,19.0,1,1,36.75,S,Second,man,True,,Southampton,no,False
148
+ 1,3,male,27.0,0,0,7.7958,S,Third,man,True,,Southampton,yes,True
149
+ 0,3,female,9.0,2,2,34.375,S,Third,child,False,,Southampton,no,False
150
+ 0,2,male,36.5,0,2,26.0,S,Second,man,True,F,Southampton,no,False
151
+ 0,2,male,42.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
152
+ 0,2,male,51.0,0,0,12.525,S,Second,man,True,,Southampton,no,True
153
+ 1,1,female,22.0,1,0,66.6,S,First,woman,False,C,Southampton,yes,False
154
+ 0,3,male,55.5,0,0,8.05,S,Third,man,True,,Southampton,no,True
155
+ 0,3,male,40.5,0,2,14.5,S,Third,man,True,,Southampton,no,False
156
+ 0,3,male,,0,0,7.3125,S,Third,man,True,,Southampton,no,True
157
+ 0,1,male,51.0,0,1,61.3792,C,First,man,True,,Cherbourg,no,False
158
+ 1,3,female,16.0,0,0,7.7333,Q,Third,woman,False,,Queenstown,yes,True
159
+ 0,3,male,30.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
160
+ 0,3,male,,0,0,8.6625,S,Third,man,True,,Southampton,no,True
161
+ 0,3,male,,8,2,69.55,S,Third,man,True,,Southampton,no,False
162
+ 0,3,male,44.0,0,1,16.1,S,Third,man,True,,Southampton,no,False
163
+ 1,2,female,40.0,0,0,15.75,S,Second,woman,False,,Southampton,yes,True
164
+ 0,3,male,26.0,0,0,7.775,S,Third,man,True,,Southampton,no,True
165
+ 0,3,male,17.0,0,0,8.6625,S,Third,man,True,,Southampton,no,True
166
+ 0,3,male,1.0,4,1,39.6875,S,Third,child,False,,Southampton,no,False
167
+ 1,3,male,9.0,0,2,20.525,S,Third,child,False,,Southampton,yes,False
168
+ 1,1,female,,0,1,55.0,S,First,woman,False,E,Southampton,yes,False
169
+ 0,3,female,45.0,1,4,27.9,S,Third,woman,False,,Southampton,no,False
170
+ 0,1,male,,0,0,25.925,S,First,man,True,,Southampton,no,True
171
+ 0,3,male,28.0,0,0,56.4958,S,Third,man,True,,Southampton,no,True
172
+ 0,1,male,61.0,0,0,33.5,S,First,man,True,B,Southampton,no,True
173
+ 0,3,male,4.0,4,1,29.125,Q,Third,child,False,,Queenstown,no,False
174
+ 1,3,female,1.0,1,1,11.1333,S,Third,child,False,,Southampton,yes,False
175
+ 0,3,male,21.0,0,0,7.925,S,Third,man,True,,Southampton,no,True
176
+ 0,1,male,56.0,0,0,30.6958,C,First,man,True,A,Cherbourg,no,True
177
+ 0,3,male,18.0,1,1,7.8542,S,Third,man,True,,Southampton,no,False
178
+ 0,3,male,,3,1,25.4667,S,Third,man,True,,Southampton,no,False
179
+ 0,1,female,50.0,0,0,28.7125,C,First,woman,False,C,Cherbourg,no,True
180
+ 0,2,male,30.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
181
+ 0,3,male,36.0,0,0,0.0,S,Third,man,True,,Southampton,no,True
182
+ 0,3,female,,8,2,69.55,S,Third,woman,False,,Southampton,no,False
183
+ 0,2,male,,0,0,15.05,C,Second,man,True,,Cherbourg,no,True
184
+ 0,3,male,9.0,4,2,31.3875,S,Third,child,False,,Southampton,no,False
185
+ 1,2,male,1.0,2,1,39.0,S,Second,child,False,F,Southampton,yes,False
186
+ 1,3,female,4.0,0,2,22.025,S,Third,child,False,,Southampton,yes,False
187
+ 0,1,male,,0,0,50.0,S,First,man,True,A,Southampton,no,True
188
+ 1,3,female,,1,0,15.5,Q,Third,woman,False,,Queenstown,yes,False
189
+ 1,1,male,45.0,0,0,26.55,S,First,man,True,,Southampton,yes,True
190
+ 0,3,male,40.0,1,1,15.5,Q,Third,man,True,,Queenstown,no,False
191
+ 0,3,male,36.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
192
+ 1,2,female,32.0,0,0,13.0,S,Second,woman,False,,Southampton,yes,True
193
+ 0,2,male,19.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
194
+ 1,3,female,19.0,1,0,7.8542,S,Third,woman,False,,Southampton,yes,False
195
+ 1,2,male,3.0,1,1,26.0,S,Second,child,False,F,Southampton,yes,False
196
+ 1,1,female,44.0,0,0,27.7208,C,First,woman,False,B,Cherbourg,yes,True
197
+ 1,1,female,58.0,0,0,146.5208,C,First,woman,False,B,Cherbourg,yes,True
198
+ 0,3,male,,0,0,7.75,Q,Third,man,True,,Queenstown,no,True
199
+ 0,3,male,42.0,0,1,8.4042,S,Third,man,True,,Southampton,no,False
200
+ 1,3,female,,0,0,7.75,Q,Third,woman,False,,Queenstown,yes,True
201
+ 0,2,female,24.0,0,0,13.0,S,Second,woman,False,,Southampton,no,True
202
+ 0,3,male,28.0,0,0,9.5,S,Third,man,True,,Southampton,no,True
203
+ 0,3,male,,8,2,69.55,S,Third,man,True,,Southampton,no,False
204
+ 0,3,male,34.0,0,0,6.4958,S,Third,man,True,,Southampton,no,True
205
+ 0,3,male,45.5,0,0,7.225,C,Third,man,True,,Cherbourg,no,True
206
+ 1,3,male,18.0,0,0,8.05,S,Third,man,True,,Southampton,yes,True
207
+ 0,3,female,2.0,0,1,10.4625,S,Third,child,False,G,Southampton,no,False
208
+ 0,3,male,32.0,1,0,15.85,S,Third,man,True,,Southampton,no,False
209
+ 1,3,male,26.0,0,0,18.7875,C,Third,man,True,,Cherbourg,yes,True
210
+ 1,3,female,16.0,0,0,7.75,Q,Third,woman,False,,Queenstown,yes,True
211
+ 1,1,male,40.0,0,0,31.0,C,First,man,True,A,Cherbourg,yes,True
212
+ 0,3,male,24.0,0,0,7.05,S,Third,man,True,,Southampton,no,True
213
+ 1,2,female,35.0,0,0,21.0,S,Second,woman,False,,Southampton,yes,True
214
+ 0,3,male,22.0,0,0,7.25,S,Third,man,True,,Southampton,no,True
215
+ 0,2,male,30.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
216
+ 0,3,male,,1,0,7.75,Q,Third,man,True,,Queenstown,no,False
217
+ 1,1,female,31.0,1,0,113.275,C,First,woman,False,D,Cherbourg,yes,False
218
+ 1,3,female,27.0,0,0,7.925,S,Third,woman,False,,Southampton,yes,True
219
+ 0,2,male,42.0,1,0,27.0,S,Second,man,True,,Southampton,no,False
220
+ 1,1,female,32.0,0,0,76.2917,C,First,woman,False,D,Cherbourg,yes,True
221
+ 0,2,male,30.0,0,0,10.5,S,Second,man,True,,Southampton,no,True
222
+ 1,3,male,16.0,0,0,8.05,S,Third,man,True,,Southampton,yes,True
223
+ 0,2,male,27.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
224
+ 0,3,male,51.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
225
+ 0,3,male,,0,0,7.8958,S,Third,man,True,,Southampton,no,True
226
+ 1,1,male,38.0,1,0,90.0,S,First,man,True,C,Southampton,yes,False
227
+ 0,3,male,22.0,0,0,9.35,S,Third,man,True,,Southampton,no,True
228
+ 1,2,male,19.0,0,0,10.5,S,Second,man,True,,Southampton,yes,True
229
+ 0,3,male,20.5,0,0,7.25,S,Third,man,True,,Southampton,no,True
230
+ 0,2,male,18.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
231
+ 0,3,female,,3,1,25.4667,S,Third,woman,False,,Southampton,no,False
232
+ 1,1,female,35.0,1,0,83.475,S,First,woman,False,C,Southampton,yes,False
233
+ 0,3,male,29.0,0,0,7.775,S,Third,man,True,,Southampton,no,True
234
+ 0,2,male,59.0,0,0,13.5,S,Second,man,True,,Southampton,no,True
235
+ 1,3,female,5.0,4,2,31.3875,S,Third,child,False,,Southampton,yes,False
236
+ 0,2,male,24.0,0,0,10.5,S,Second,man,True,,Southampton,no,True
237
+ 0,3,female,,0,0,7.55,S,Third,woman,False,,Southampton,no,True
238
+ 0,2,male,44.0,1,0,26.0,S,Second,man,True,,Southampton,no,False
239
+ 1,2,female,8.0,0,2,26.25,S,Second,child,False,,Southampton,yes,False
240
+ 0,2,male,19.0,0,0,10.5,S,Second,man,True,,Southampton,no,True
241
+ 0,2,male,33.0,0,0,12.275,S,Second,man,True,,Southampton,no,True
242
+ 0,3,female,,1,0,14.4542,C,Third,woman,False,,Cherbourg,no,False
243
+ 1,3,female,,1,0,15.5,Q,Third,woman,False,,Queenstown,yes,False
244
+ 0,2,male,29.0,0,0,10.5,S,Second,man,True,,Southampton,no,True
245
+ 0,3,male,22.0,0,0,7.125,S,Third,man,True,,Southampton,no,True
246
+ 0,3,male,30.0,0,0,7.225,C,Third,man,True,,Cherbourg,no,True
247
+ 0,1,male,44.0,2,0,90.0,Q,First,man,True,C,Queenstown,no,False
248
+ 0,3,female,25.0,0,0,7.775,S,Third,woman,False,,Southampton,no,True
249
+ 1,2,female,24.0,0,2,14.5,S,Second,woman,False,,Southampton,yes,False
250
+ 1,1,male,37.0,1,1,52.5542,S,First,man,True,D,Southampton,yes,False
251
+ 0,2,male,54.0,1,0,26.0,S,Second,man,True,,Southampton,no,False
252
+ 0,3,male,,0,0,7.25,S,Third,man,True,,Southampton,no,True
253
+ 0,3,female,29.0,1,1,10.4625,S,Third,woman,False,G,Southampton,no,False
254
+ 0,1,male,62.0,0,0,26.55,S,First,man,True,C,Southampton,no,True
255
+ 0,3,male,30.0,1,0,16.1,S,Third,man,True,,Southampton,no,False
256
+ 0,3,female,41.0,0,2,20.2125,S,Third,woman,False,,Southampton,no,False
257
+ 1,3,female,29.0,0,2,15.2458,C,Third,woman,False,,Cherbourg,yes,False
258
+ 1,1,female,,0,0,79.2,C,First,woman,False,,Cherbourg,yes,True
259
+ 1,1,female,30.0,0,0,86.5,S,First,woman,False,B,Southampton,yes,True
260
+ 1,1,female,35.0,0,0,512.3292,C,First,woman,False,,Cherbourg,yes,True
261
+ 1,2,female,50.0,0,1,26.0,S,Second,woman,False,,Southampton,yes,False
262
+ 0,3,male,,0,0,7.75,Q,Third,man,True,,Queenstown,no,True
263
+ 1,3,male,3.0,4,2,31.3875,S,Third,child,False,,Southampton,yes,False
264
+ 0,1,male,52.0,1,1,79.65,S,First,man,True,E,Southampton,no,False
265
+ 0,1,male,40.0,0,0,0.0,S,First,man,True,B,Southampton,no,True
266
+ 0,3,female,,0,0,7.75,Q,Third,woman,False,,Queenstown,no,True
267
+ 0,2,male,36.0,0,0,10.5,S,Second,man,True,,Southampton,no,True
268
+ 0,3,male,16.0,4,1,39.6875,S,Third,man,True,,Southampton,no,False
269
+ 1,3,male,25.0,1,0,7.775,S,Third,man,True,,Southampton,yes,False
270
+ 1,1,female,58.0,0,1,153.4625,S,First,woman,False,C,Southampton,yes,False
271
+ 1,1,female,35.0,0,0,135.6333,S,First,woman,False,C,Southampton,yes,True
272
+ 0,1,male,,0,0,31.0,S,First,man,True,,Southampton,no,True
273
+ 1,3,male,25.0,0,0,0.0,S,Third,man,True,,Southampton,yes,True
274
+ 1,2,female,41.0,0,1,19.5,S,Second,woman,False,,Southampton,yes,False
275
+ 0,1,male,37.0,0,1,29.7,C,First,man,True,C,Cherbourg,no,False
276
+ 1,3,female,,0,0,7.75,Q,Third,woman,False,,Queenstown,yes,True
277
+ 1,1,female,63.0,1,0,77.9583,S,First,woman,False,D,Southampton,yes,False
278
+ 0,3,female,45.0,0,0,7.75,S,Third,woman,False,,Southampton,no,True
279
+ 0,2,male,,0,0,0.0,S,Second,man,True,,Southampton,no,True
280
+ 0,3,male,7.0,4,1,29.125,Q,Third,child,False,,Queenstown,no,False
281
+ 1,3,female,35.0,1,1,20.25,S,Third,woman,False,,Southampton,yes,False
282
+ 0,3,male,65.0,0,0,7.75,Q,Third,man,True,,Queenstown,no,True
283
+ 0,3,male,28.0,0,0,7.8542,S,Third,man,True,,Southampton,no,True
284
+ 0,3,male,16.0,0,0,9.5,S,Third,man,True,,Southampton,no,True
285
+ 1,3,male,19.0,0,0,8.05,S,Third,man,True,,Southampton,yes,True
286
+ 0,1,male,,0,0,26.0,S,First,man,True,A,Southampton,no,True
287
+ 0,3,male,33.0,0,0,8.6625,C,Third,man,True,,Cherbourg,no,True
288
+ 1,3,male,30.0,0,0,9.5,S,Third,man,True,,Southampton,yes,True
289
+ 0,3,male,22.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
290
+ 1,2,male,42.0,0,0,13.0,S,Second,man,True,,Southampton,yes,True
291
+ 1,3,female,22.0,0,0,7.75,Q,Third,woman,False,,Queenstown,yes,True
292
+ 1,1,female,26.0,0,0,78.85,S,First,woman,False,,Southampton,yes,True
293
+ 1,1,female,19.0,1,0,91.0792,C,First,woman,False,B,Cherbourg,yes,False
294
+ 0,2,male,36.0,0,0,12.875,C,Second,man,True,D,Cherbourg,no,True
295
+ 0,3,female,24.0,0,0,8.85,S,Third,woman,False,,Southampton,no,True
296
+ 0,3,male,24.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
297
+ 0,1,male,,0,0,27.7208,C,First,man,True,,Cherbourg,no,True
298
+ 0,3,male,23.5,0,0,7.2292,C,Third,man,True,,Cherbourg,no,True
299
+ 0,1,female,2.0,1,2,151.55,S,First,child,False,C,Southampton,no,False
300
+ 1,1,male,,0,0,30.5,S,First,man,True,C,Southampton,yes,True
301
+ 1,1,female,50.0,0,1,247.5208,C,First,woman,False,B,Cherbourg,yes,False
302
+ 1,3,female,,0,0,7.75,Q,Third,woman,False,,Queenstown,yes,True
303
+ 1,3,male,,2,0,23.25,Q,Third,man,True,,Queenstown,yes,False
304
+ 0,3,male,19.0,0,0,0.0,S,Third,man,True,,Southampton,no,True
305
+ 1,2,female,,0,0,12.35,Q,Second,woman,False,E,Queenstown,yes,True
306
+ 0,3,male,,0,0,8.05,S,Third,man,True,,Southampton,no,True
307
+ 1,1,male,0.92,1,2,151.55,S,First,child,False,C,Southampton,yes,False
308
+ 1,1,female,,0,0,110.8833,C,First,woman,False,,Cherbourg,yes,True
309
+ 1,1,female,17.0,1,0,108.9,C,First,woman,False,C,Cherbourg,yes,False
310
+ 0,2,male,30.0,1,0,24.0,C,Second,man,True,,Cherbourg,no,False
311
+ 1,1,female,30.0,0,0,56.9292,C,First,woman,False,E,Cherbourg,yes,True
312
+ 1,1,female,24.0,0,0,83.1583,C,First,woman,False,C,Cherbourg,yes,True
313
+ 1,1,female,18.0,2,2,262.375,C,First,woman,False,B,Cherbourg,yes,False
314
+ 0,2,female,26.0,1,1,26.0,S,Second,woman,False,,Southampton,no,False
315
+ 0,3,male,28.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
316
+ 0,2,male,43.0,1,1,26.25,S,Second,man,True,,Southampton,no,False
317
+ 1,3,female,26.0,0,0,7.8542,S,Third,woman,False,,Southampton,yes,True
318
+ 1,2,female,24.0,1,0,26.0,S,Second,woman,False,,Southampton,yes,False
319
+ 0,2,male,54.0,0,0,14.0,S,Second,man,True,,Southampton,no,True
320
+ 1,1,female,31.0,0,2,164.8667,S,First,woman,False,C,Southampton,yes,False
321
+ 1,1,female,40.0,1,1,134.5,C,First,woman,False,E,Cherbourg,yes,False
322
+ 0,3,male,22.0,0,0,7.25,S,Third,man,True,,Southampton,no,True
323
+ 0,3,male,27.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
324
+ 1,2,female,30.0,0,0,12.35,Q,Second,woman,False,,Queenstown,yes,True
325
+ 1,2,female,22.0,1,1,29.0,S,Second,woman,False,,Southampton,yes,False
326
+ 0,3,male,,8,2,69.55,S,Third,man,True,,Southampton,no,False
327
+ 1,1,female,36.0,0,0,135.6333,C,First,woman,False,C,Cherbourg,yes,True
328
+ 0,3,male,61.0,0,0,6.2375,S,Third,man,True,,Southampton,no,True
329
+ 1,2,female,36.0,0,0,13.0,S,Second,woman,False,D,Southampton,yes,True
330
+ 1,3,female,31.0,1,1,20.525,S,Third,woman,False,,Southampton,yes,False
331
+ 1,1,female,16.0,0,1,57.9792,C,First,woman,False,B,Cherbourg,yes,False
332
+ 1,3,female,,2,0,23.25,Q,Third,woman,False,,Queenstown,yes,False
333
+ 0,1,male,45.5,0,0,28.5,S,First,man,True,C,Southampton,no,True
334
+ 0,1,male,38.0,0,1,153.4625,S,First,man,True,C,Southampton,no,False
335
+ 0,3,male,16.0,2,0,18.0,S,Third,man,True,,Southampton,no,False
336
+ 1,1,female,,1,0,133.65,S,First,woman,False,,Southampton,yes,False
337
+ 0,3,male,,0,0,7.8958,S,Third,man,True,,Southampton,no,True
338
+ 0,1,male,29.0,1,0,66.6,S,First,man,True,C,Southampton,no,False
339
+ 1,1,female,41.0,0,0,134.5,C,First,woman,False,E,Cherbourg,yes,True
340
+ 1,3,male,45.0,0,0,8.05,S,Third,man,True,,Southampton,yes,True
341
+ 0,1,male,45.0,0,0,35.5,S,First,man,True,,Southampton,no,True
342
+ 1,2,male,2.0,1,1,26.0,S,Second,child,False,F,Southampton,yes,False
343
+ 1,1,female,24.0,3,2,263.0,S,First,woman,False,C,Southampton,yes,False
344
+ 0,2,male,28.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
345
+ 0,2,male,25.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
346
+ 0,2,male,36.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
347
+ 1,2,female,24.0,0,0,13.0,S,Second,woman,False,F,Southampton,yes,True
348
+ 1,2,female,40.0,0,0,13.0,S,Second,woman,False,,Southampton,yes,True
349
+ 1,3,female,,1,0,16.1,S,Third,woman,False,,Southampton,yes,False
350
+ 1,3,male,3.0,1,1,15.9,S,Third,child,False,,Southampton,yes,False
351
+ 0,3,male,42.0,0,0,8.6625,S,Third,man,True,,Southampton,no,True
352
+ 0,3,male,23.0,0,0,9.225,S,Third,man,True,,Southampton,no,True
353
+ 0,1,male,,0,0,35.0,S,First,man,True,C,Southampton,no,True
354
+ 0,3,male,15.0,1,1,7.2292,C,Third,child,False,,Cherbourg,no,False
355
+ 0,3,male,25.0,1,0,17.8,S,Third,man,True,,Southampton,no,False
356
+ 0,3,male,,0,0,7.225,C,Third,man,True,,Cherbourg,no,True
357
+ 0,3,male,28.0,0,0,9.5,S,Third,man,True,,Southampton,no,True
358
+ 1,1,female,22.0,0,1,55.0,S,First,woman,False,E,Southampton,yes,False
359
+ 0,2,female,38.0,0,0,13.0,S,Second,woman,False,,Southampton,no,True
360
+ 1,3,female,,0,0,7.8792,Q,Third,woman,False,,Queenstown,yes,True
361
+ 1,3,female,,0,0,7.8792,Q,Third,woman,False,,Queenstown,yes,True
362
+ 0,3,male,40.0,1,4,27.9,S,Third,man,True,,Southampton,no,False
363
+ 0,2,male,29.0,1,0,27.7208,C,Second,man,True,,Cherbourg,no,False
364
+ 0,3,female,45.0,0,1,14.4542,C,Third,woman,False,,Cherbourg,no,False
365
+ 0,3,male,35.0,0,0,7.05,S,Third,man,True,,Southampton,no,True
366
+ 0,3,male,,1,0,15.5,Q,Third,man,True,,Queenstown,no,False
367
+ 0,3,male,30.0,0,0,7.25,S,Third,man,True,,Southampton,no,True
368
+ 1,1,female,60.0,1,0,75.25,C,First,woman,False,D,Cherbourg,yes,False
369
+ 1,3,female,,0,0,7.2292,C,Third,woman,False,,Cherbourg,yes,True
370
+ 1,3,female,,0,0,7.75,Q,Third,woman,False,,Queenstown,yes,True
371
+ 1,1,female,24.0,0,0,69.3,C,First,woman,False,B,Cherbourg,yes,True
372
+ 1,1,male,25.0,1,0,55.4417,C,First,man,True,E,Cherbourg,yes,False
373
+ 0,3,male,18.0,1,0,6.4958,S,Third,man,True,,Southampton,no,False
374
+ 0,3,male,19.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
375
+ 0,1,male,22.0,0,0,135.6333,C,First,man,True,,Cherbourg,no,True
376
+ 0,3,female,3.0,3,1,21.075,S,Third,child,False,,Southampton,no,False
377
+ 1,1,female,,1,0,82.1708,C,First,woman,False,,Cherbourg,yes,False
378
+ 1,3,female,22.0,0,0,7.25,S,Third,woman,False,,Southampton,yes,True
379
+ 0,1,male,27.0,0,2,211.5,C,First,man,True,C,Cherbourg,no,False
380
+ 0,3,male,20.0,0,0,4.0125,C,Third,man,True,,Cherbourg,no,True
381
+ 0,3,male,19.0,0,0,7.775,S,Third,man,True,,Southampton,no,True
382
+ 1,1,female,42.0,0,0,227.525,C,First,woman,False,,Cherbourg,yes,True
383
+ 1,3,female,1.0,0,2,15.7417,C,Third,child,False,,Cherbourg,yes,False
384
+ 0,3,male,32.0,0,0,7.925,S,Third,man,True,,Southampton,no,True
385
+ 1,1,female,35.0,1,0,52.0,S,First,woman,False,,Southampton,yes,False
386
+ 0,3,male,,0,0,7.8958,S,Third,man,True,,Southampton,no,True
387
+ 0,2,male,18.0,0,0,73.5,S,Second,man,True,,Southampton,no,True
388
+ 0,3,male,1.0,5,2,46.9,S,Third,child,False,,Southampton,no,False
389
+ 1,2,female,36.0,0,0,13.0,S,Second,woman,False,,Southampton,yes,True
390
+ 0,3,male,,0,0,7.7292,Q,Third,man,True,,Queenstown,no,True
391
+ 1,2,female,17.0,0,0,12.0,C,Second,woman,False,,Cherbourg,yes,True
392
+ 1,1,male,36.0,1,2,120.0,S,First,man,True,B,Southampton,yes,False
393
+ 1,3,male,21.0,0,0,7.7958,S,Third,man,True,,Southampton,yes,True
394
+ 0,3,male,28.0,2,0,7.925,S,Third,man,True,,Southampton,no,False
395
+ 1,1,female,23.0,1,0,113.275,C,First,woman,False,D,Cherbourg,yes,False
396
+ 1,3,female,24.0,0,2,16.7,S,Third,woman,False,G,Southampton,yes,False
397
+ 0,3,male,22.0,0,0,7.7958,S,Third,man,True,,Southampton,no,True
398
+ 0,3,female,31.0,0,0,7.8542,S,Third,woman,False,,Southampton,no,True
399
+ 0,2,male,46.0,0,0,26.0,S,Second,man,True,,Southampton,no,True
400
+ 0,2,male,23.0,0,0,10.5,S,Second,man,True,,Southampton,no,True
401
+ 1,2,female,28.0,0,0,12.65,S,Second,woman,False,,Southampton,yes,True
402
+ 1,3,male,39.0,0,0,7.925,S,Third,man,True,,Southampton,yes,True
403
+ 0,3,male,26.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
404
+ 0,3,female,21.0,1,0,9.825,S,Third,woman,False,,Southampton,no,False
405
+ 0,3,male,28.0,1,0,15.85,S,Third,man,True,,Southampton,no,False
406
+ 0,3,female,20.0,0,0,8.6625,S,Third,woman,False,,Southampton,no,True
407
+ 0,2,male,34.0,1,0,21.0,S,Second,man,True,,Southampton,no,False
408
+ 0,3,male,51.0,0,0,7.75,S,Third,man,True,,Southampton,no,True
409
+ 1,2,male,3.0,1,1,18.75,S,Second,child,False,,Southampton,yes,False
410
+ 0,3,male,21.0,0,0,7.775,S,Third,man,True,,Southampton,no,True
411
+ 0,3,female,,3,1,25.4667,S,Third,woman,False,,Southampton,no,False
412
+ 0,3,male,,0,0,7.8958,S,Third,man,True,,Southampton,no,True
413
+ 0,3,male,,0,0,6.8583,Q,Third,man,True,,Queenstown,no,True
414
+ 1,1,female,33.0,1,0,90.0,Q,First,woman,False,C,Queenstown,yes,False
415
+ 0,2,male,,0,0,0.0,S,Second,man,True,,Southampton,no,True
416
+ 1,3,male,44.0,0,0,7.925,S,Third,man,True,,Southampton,yes,True
417
+ 0,3,female,,0,0,8.05,S,Third,woman,False,,Southampton,no,True
418
+ 1,2,female,34.0,1,1,32.5,S,Second,woman,False,,Southampton,yes,False
419
+ 1,2,female,18.0,0,2,13.0,S,Second,woman,False,,Southampton,yes,False
420
+ 0,2,male,30.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
421
+ 0,3,female,10.0,0,2,24.15,S,Third,child,False,,Southampton,no,False
422
+ 0,3,male,,0,0,7.8958,C,Third,man,True,,Cherbourg,no,True
423
+ 0,3,male,21.0,0,0,7.7333,Q,Third,man,True,,Queenstown,no,True
424
+ 0,3,male,29.0,0,0,7.875,S,Third,man,True,,Southampton,no,True
425
+ 0,3,female,28.0,1,1,14.4,S,Third,woman,False,,Southampton,no,False
426
+ 0,3,male,18.0,1,1,20.2125,S,Third,man,True,,Southampton,no,False
427
+ 0,3,male,,0,0,7.25,S,Third,man,True,,Southampton,no,True
428
+ 1,2,female,28.0,1,0,26.0,S,Second,woman,False,,Southampton,yes,False
429
+ 1,2,female,19.0,0,0,26.0,S,Second,woman,False,,Southampton,yes,True
430
+ 0,3,male,,0,0,7.75,Q,Third,man,True,,Queenstown,no,True
431
+ 1,3,male,32.0,0,0,8.05,S,Third,man,True,E,Southampton,yes,True
432
+ 1,1,male,28.0,0,0,26.55,S,First,man,True,C,Southampton,yes,True
433
+ 1,3,female,,1,0,16.1,S,Third,woman,False,,Southampton,yes,False
434
+ 1,2,female,42.0,1,0,26.0,S,Second,woman,False,,Southampton,yes,False
435
+ 0,3,male,17.0,0,0,7.125,S,Third,man,True,,Southampton,no,True
436
+ 0,1,male,50.0,1,0,55.9,S,First,man,True,E,Southampton,no,False
437
+ 1,1,female,14.0,1,2,120.0,S,First,child,False,B,Southampton,yes,False
438
+ 0,3,female,21.0,2,2,34.375,S,Third,woman,False,,Southampton,no,False
439
+ 1,2,female,24.0,2,3,18.75,S,Second,woman,False,,Southampton,yes,False
440
+ 0,1,male,64.0,1,4,263.0,S,First,man,True,C,Southampton,no,False
441
+ 0,2,male,31.0,0,0,10.5,S,Second,man,True,,Southampton,no,True
442
+ 1,2,female,45.0,1,1,26.25,S,Second,woman,False,,Southampton,yes,False
443
+ 0,3,male,20.0,0,0,9.5,S,Third,man,True,,Southampton,no,True
444
+ 0,3,male,25.0,1,0,7.775,S,Third,man,True,,Southampton,no,False
445
+ 1,2,female,28.0,0,0,13.0,S,Second,woman,False,,Southampton,yes,True
446
+ 1,3,male,,0,0,8.1125,S,Third,man,True,,Southampton,yes,True
447
+ 1,1,male,4.0,0,2,81.8583,S,First,child,False,A,Southampton,yes,False
448
+ 1,2,female,13.0,0,1,19.5,S,Second,child,False,,Southampton,yes,False
449
+ 1,1,male,34.0,0,0,26.55,S,First,man,True,,Southampton,yes,True
450
+ 1,3,female,5.0,2,1,19.2583,C,Third,child,False,,Cherbourg,yes,False
451
+ 1,1,male,52.0,0,0,30.5,S,First,man,True,C,Southampton,yes,True
452
+ 0,2,male,36.0,1,2,27.75,S,Second,man,True,,Southampton,no,False
453
+ 0,3,male,,1,0,19.9667,S,Third,man,True,,Southampton,no,False
454
+ 0,1,male,30.0,0,0,27.75,C,First,man,True,C,Cherbourg,no,True
455
+ 1,1,male,49.0,1,0,89.1042,C,First,man,True,C,Cherbourg,yes,False
456
+ 0,3,male,,0,0,8.05,S,Third,man,True,,Southampton,no,True
457
+ 1,3,male,29.0,0,0,7.8958,C,Third,man,True,,Cherbourg,yes,True
458
+ 0,1,male,65.0,0,0,26.55,S,First,man,True,E,Southampton,no,True
459
+ 1,1,female,,1,0,51.8625,S,First,woman,False,D,Southampton,yes,False
460
+ 1,2,female,50.0,0,0,10.5,S,Second,woman,False,,Southampton,yes,True
461
+ 0,3,male,,0,0,7.75,Q,Third,man,True,,Queenstown,no,True
462
+ 1,1,male,48.0,0,0,26.55,S,First,man,True,E,Southampton,yes,True
463
+ 0,3,male,34.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
464
+ 0,1,male,47.0,0,0,38.5,S,First,man,True,E,Southampton,no,True
465
+ 0,2,male,48.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
466
+ 0,3,male,,0,0,8.05,S,Third,man,True,,Southampton,no,True
467
+ 0,3,male,38.0,0,0,7.05,S,Third,man,True,,Southampton,no,True
468
+ 0,2,male,,0,0,0.0,S,Second,man,True,,Southampton,no,True
469
+ 0,1,male,56.0,0,0,26.55,S,First,man,True,,Southampton,no,True
470
+ 0,3,male,,0,0,7.725,Q,Third,man,True,,Queenstown,no,True
471
+ 1,3,female,0.75,2,1,19.2583,C,Third,child,False,,Cherbourg,yes,False
472
+ 0,3,male,,0,0,7.25,S,Third,man,True,,Southampton,no,True
473
+ 0,3,male,38.0,0,0,8.6625,S,Third,man,True,,Southampton,no,True
474
+ 1,2,female,33.0,1,2,27.75,S,Second,woman,False,,Southampton,yes,False
475
+ 1,2,female,23.0,0,0,13.7917,C,Second,woman,False,D,Cherbourg,yes,True
476
+ 0,3,female,22.0,0,0,9.8375,S,Third,woman,False,,Southampton,no,True
477
+ 0,1,male,,0,0,52.0,S,First,man,True,A,Southampton,no,True
478
+ 0,2,male,34.0,1,0,21.0,S,Second,man,True,,Southampton,no,False
479
+ 0,3,male,29.0,1,0,7.0458,S,Third,man,True,,Southampton,no,False
480
+ 0,3,male,22.0,0,0,7.5208,S,Third,man,True,,Southampton,no,True
481
+ 1,3,female,2.0,0,1,12.2875,S,Third,child,False,,Southampton,yes,False
482
+ 0,3,male,9.0,5,2,46.9,S,Third,child,False,,Southampton,no,False
483
+ 0,2,male,,0,0,0.0,S,Second,man,True,,Southampton,no,True
484
+ 0,3,male,50.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
485
+ 1,3,female,63.0,0,0,9.5875,S,Third,woman,False,,Southampton,yes,True
486
+ 1,1,male,25.0,1,0,91.0792,C,First,man,True,B,Cherbourg,yes,False
487
+ 0,3,female,,3,1,25.4667,S,Third,woman,False,,Southampton,no,False
488
+ 1,1,female,35.0,1,0,90.0,S,First,woman,False,C,Southampton,yes,False
489
+ 0,1,male,58.0,0,0,29.7,C,First,man,True,B,Cherbourg,no,True
490
+ 0,3,male,30.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
491
+ 1,3,male,9.0,1,1,15.9,S,Third,child,False,,Southampton,yes,False
492
+ 0,3,male,,1,0,19.9667,S,Third,man,True,,Southampton,no,False
493
+ 0,3,male,21.0,0,0,7.25,S,Third,man,True,,Southampton,no,True
494
+ 0,1,male,55.0,0,0,30.5,S,First,man,True,C,Southampton,no,True
495
+ 0,1,male,71.0,0,0,49.5042,C,First,man,True,,Cherbourg,no,True
496
+ 0,3,male,21.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
497
+ 0,3,male,,0,0,14.4583,C,Third,man,True,,Cherbourg,no,True
498
+ 1,1,female,54.0,1,0,78.2667,C,First,woman,False,D,Cherbourg,yes,False
499
+ 0,3,male,,0,0,15.1,S,Third,man,True,,Southampton,no,True
500
+ 0,1,female,25.0,1,2,151.55,S,First,woman,False,C,Southampton,no,False
501
+ 0,3,male,24.0,0,0,7.7958,S,Third,man,True,,Southampton,no,True
502
+ 0,3,male,17.0,0,0,8.6625,S,Third,man,True,,Southampton,no,True
503
+ 0,3,female,21.0,0,0,7.75,Q,Third,woman,False,,Queenstown,no,True
504
+ 0,3,female,,0,0,7.6292,Q,Third,woman,False,,Queenstown,no,True
505
+ 0,3,female,37.0,0,0,9.5875,S,Third,woman,False,,Southampton,no,True
506
+ 1,1,female,16.0,0,0,86.5,S,First,woman,False,B,Southampton,yes,True
507
+ 0,1,male,18.0,1,0,108.9,C,First,man,True,C,Cherbourg,no,False
508
+ 1,2,female,33.0,0,2,26.0,S,Second,woman,False,,Southampton,yes,False
509
+ 1,1,male,,0,0,26.55,S,First,man,True,,Southampton,yes,True
510
+ 0,3,male,28.0,0,0,22.525,S,Third,man,True,,Southampton,no,True
511
+ 1,3,male,26.0,0,0,56.4958,S,Third,man,True,,Southampton,yes,True
512
+ 1,3,male,29.0,0,0,7.75,Q,Third,man,True,,Queenstown,yes,True
513
+ 0,3,male,,0,0,8.05,S,Third,man,True,,Southampton,no,True
514
+ 1,1,male,36.0,0,0,26.2875,S,First,man,True,E,Southampton,yes,True
515
+ 1,1,female,54.0,1,0,59.4,C,First,woman,False,,Cherbourg,yes,False
516
+ 0,3,male,24.0,0,0,7.4958,S,Third,man,True,,Southampton,no,True
517
+ 0,1,male,47.0,0,0,34.0208,S,First,man,True,D,Southampton,no,True
518
+ 1,2,female,34.0,0,0,10.5,S,Second,woman,False,F,Southampton,yes,True
519
+ 0,3,male,,0,0,24.15,Q,Third,man,True,,Queenstown,no,True
520
+ 1,2,female,36.0,1,0,26.0,S,Second,woman,False,,Southampton,yes,False
521
+ 0,3,male,32.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
522
+ 1,1,female,30.0,0,0,93.5,S,First,woman,False,B,Southampton,yes,True
523
+ 0,3,male,22.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
524
+ 0,3,male,,0,0,7.225,C,Third,man,True,,Cherbourg,no,True
525
+ 1,1,female,44.0,0,1,57.9792,C,First,woman,False,B,Cherbourg,yes,False
526
+ 0,3,male,,0,0,7.2292,C,Third,man,True,,Cherbourg,no,True
527
+ 0,3,male,40.5,0,0,7.75,Q,Third,man,True,,Queenstown,no,True
528
+ 1,2,female,50.0,0,0,10.5,S,Second,woman,False,,Southampton,yes,True
529
+ 0,1,male,,0,0,221.7792,S,First,man,True,C,Southampton,no,True
530
+ 0,3,male,39.0,0,0,7.925,S,Third,man,True,,Southampton,no,True
531
+ 0,2,male,23.0,2,1,11.5,S,Second,man,True,,Southampton,no,False
532
+ 1,2,female,2.0,1,1,26.0,S,Second,child,False,,Southampton,yes,False
533
+ 0,3,male,,0,0,7.2292,C,Third,man,True,,Cherbourg,no,True
534
+ 0,3,male,17.0,1,1,7.2292,C,Third,man,True,,Cherbourg,no,False
535
+ 1,3,female,,0,2,22.3583,C,Third,woman,False,,Cherbourg,yes,False
536
+ 0,3,female,30.0,0,0,8.6625,S,Third,woman,False,,Southampton,no,True
537
+ 1,2,female,7.0,0,2,26.25,S,Second,child,False,,Southampton,yes,False
538
+ 0,1,male,45.0,0,0,26.55,S,First,man,True,B,Southampton,no,True
539
+ 1,1,female,30.0,0,0,106.425,C,First,woman,False,,Cherbourg,yes,True
540
+ 0,3,male,,0,0,14.5,S,Third,man,True,,Southampton,no,True
541
+ 1,1,female,22.0,0,2,49.5,C,First,woman,False,B,Cherbourg,yes,False
542
+ 1,1,female,36.0,0,2,71.0,S,First,woman,False,B,Southampton,yes,False
543
+ 0,3,female,9.0,4,2,31.275,S,Third,child,False,,Southampton,no,False
544
+ 0,3,female,11.0,4,2,31.275,S,Third,child,False,,Southampton,no,False
545
+ 1,2,male,32.0,1,0,26.0,S,Second,man,True,,Southampton,yes,False
546
+ 0,1,male,50.0,1,0,106.425,C,First,man,True,C,Cherbourg,no,False
547
+ 0,1,male,64.0,0,0,26.0,S,First,man,True,,Southampton,no,True
548
+ 1,2,female,19.0,1,0,26.0,S,Second,woman,False,,Southampton,yes,False
549
+ 1,2,male,,0,0,13.8625,C,Second,man,True,,Cherbourg,yes,True
550
+ 0,3,male,33.0,1,1,20.525,S,Third,man,True,,Southampton,no,False
551
+ 1,2,male,8.0,1,1,36.75,S,Second,child,False,,Southampton,yes,False
552
+ 1,1,male,17.0,0,2,110.8833,C,First,man,True,C,Cherbourg,yes,False
553
+ 0,2,male,27.0,0,0,26.0,S,Second,man,True,,Southampton,no,True
554
+ 0,3,male,,0,0,7.8292,Q,Third,man,True,,Queenstown,no,True
555
+ 1,3,male,22.0,0,0,7.225,C,Third,man,True,,Cherbourg,yes,True
556
+ 1,3,female,22.0,0,0,7.775,S,Third,woman,False,,Southampton,yes,True
557
+ 0,1,male,62.0,0,0,26.55,S,First,man,True,,Southampton,no,True
558
+ 1,1,female,48.0,1,0,39.6,C,First,woman,False,A,Cherbourg,yes,False
559
+ 0,1,male,,0,0,227.525,C,First,man,True,,Cherbourg,no,True
560
+ 1,1,female,39.0,1,1,79.65,S,First,woman,False,E,Southampton,yes,False
561
+ 1,3,female,36.0,1,0,17.4,S,Third,woman,False,,Southampton,yes,False
562
+ 0,3,male,,0,0,7.75,Q,Third,man,True,,Queenstown,no,True
563
+ 0,3,male,40.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
564
+ 0,2,male,28.0,0,0,13.5,S,Second,man,True,,Southampton,no,True
565
+ 0,3,male,,0,0,8.05,S,Third,man,True,,Southampton,no,True
566
+ 0,3,female,,0,0,8.05,S,Third,woman,False,,Southampton,no,True
567
+ 0,3,male,24.0,2,0,24.15,S,Third,man,True,,Southampton,no,False
568
+ 0,3,male,19.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
569
+ 0,3,female,29.0,0,4,21.075,S,Third,woman,False,,Southampton,no,False
570
+ 0,3,male,,0,0,7.2292,C,Third,man,True,,Cherbourg,no,True
571
+ 1,3,male,32.0,0,0,7.8542,S,Third,man,True,,Southampton,yes,True
572
+ 1,2,male,62.0,0,0,10.5,S,Second,man,True,,Southampton,yes,True
573
+ 1,1,female,53.0,2,0,51.4792,S,First,woman,False,C,Southampton,yes,False
574
+ 1,1,male,36.0,0,0,26.3875,S,First,man,True,E,Southampton,yes,True
575
+ 1,3,female,,0,0,7.75,Q,Third,woman,False,,Queenstown,yes,True
576
+ 0,3,male,16.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
577
+ 0,3,male,19.0,0,0,14.5,S,Third,man,True,,Southampton,no,True
578
+ 1,2,female,34.0,0,0,13.0,S,Second,woman,False,,Southampton,yes,True
579
+ 1,1,female,39.0,1,0,55.9,S,First,woman,False,E,Southampton,yes,False
580
+ 0,3,female,,1,0,14.4583,C,Third,woman,False,,Cherbourg,no,False
581
+ 1,3,male,32.0,0,0,7.925,S,Third,man,True,,Southampton,yes,True
582
+ 1,2,female,25.0,1,1,30.0,S,Second,woman,False,,Southampton,yes,False
583
+ 1,1,female,39.0,1,1,110.8833,C,First,woman,False,C,Cherbourg,yes,False
584
+ 0,2,male,54.0,0,0,26.0,S,Second,man,True,,Southampton,no,True
585
+ 0,1,male,36.0,0,0,40.125,C,First,man,True,A,Cherbourg,no,True
586
+ 0,3,male,,0,0,8.7125,C,Third,man,True,,Cherbourg,no,True
587
+ 1,1,female,18.0,0,2,79.65,S,First,woman,False,E,Southampton,yes,False
588
+ 0,2,male,47.0,0,0,15.0,S,Second,man,True,,Southampton,no,True
589
+ 1,1,male,60.0,1,1,79.2,C,First,man,True,B,Cherbourg,yes,False
590
+ 0,3,male,22.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
591
+ 0,3,male,,0,0,8.05,S,Third,man,True,,Southampton,no,True
592
+ 0,3,male,35.0,0,0,7.125,S,Third,man,True,,Southampton,no,True
593
+ 1,1,female,52.0,1,0,78.2667,C,First,woman,False,D,Cherbourg,yes,False
594
+ 0,3,male,47.0,0,0,7.25,S,Third,man,True,,Southampton,no,True
595
+ 0,3,female,,0,2,7.75,Q,Third,woman,False,,Queenstown,no,False
596
+ 0,2,male,37.0,1,0,26.0,S,Second,man,True,,Southampton,no,False
597
+ 0,3,male,36.0,1,1,24.15,S,Third,man,True,,Southampton,no,False
598
+ 1,2,female,,0,0,33.0,S,Second,woman,False,,Southampton,yes,True
599
+ 0,3,male,49.0,0,0,0.0,S,Third,man,True,,Southampton,no,True
600
+ 0,3,male,,0,0,7.225,C,Third,man,True,,Cherbourg,no,True
601
+ 1,1,male,49.0,1,0,56.9292,C,First,man,True,A,Cherbourg,yes,False
602
+ 1,2,female,24.0,2,1,27.0,S,Second,woman,False,,Southampton,yes,False
603
+ 0,3,male,,0,0,7.8958,S,Third,man,True,,Southampton,no,True
604
+ 0,1,male,,0,0,42.4,S,First,man,True,,Southampton,no,True
605
+ 0,3,male,44.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
606
+ 1,1,male,35.0,0,0,26.55,C,First,man,True,,Cherbourg,yes,True
607
+ 0,3,male,36.0,1,0,15.55,S,Third,man,True,,Southampton,no,False
608
+ 0,3,male,30.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
609
+ 1,1,male,27.0,0,0,30.5,S,First,man,True,,Southampton,yes,True
610
+ 1,2,female,22.0,1,2,41.5792,C,Second,woman,False,,Cherbourg,yes,False
611
+ 1,1,female,40.0,0,0,153.4625,S,First,woman,False,C,Southampton,yes,True
612
+ 0,3,female,39.0,1,5,31.275,S,Third,woman,False,,Southampton,no,False
613
+ 0,3,male,,0,0,7.05,S,Third,man,True,,Southampton,no,True
614
+ 1,3,female,,1,0,15.5,Q,Third,woman,False,,Queenstown,yes,False
615
+ 0,3,male,,0,0,7.75,Q,Third,man,True,,Queenstown,no,True
616
+ 0,3,male,35.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
617
+ 1,2,female,24.0,1,2,65.0,S,Second,woman,False,,Southampton,yes,False
618
+ 0,3,male,34.0,1,1,14.4,S,Third,man,True,,Southampton,no,False
619
+ 0,3,female,26.0,1,0,16.1,S,Third,woman,False,,Southampton,no,False
620
+ 1,2,female,4.0,2,1,39.0,S,Second,child,False,F,Southampton,yes,False
621
+ 0,2,male,26.0,0,0,10.5,S,Second,man,True,,Southampton,no,True
622
+ 0,3,male,27.0,1,0,14.4542,C,Third,man,True,,Cherbourg,no,False
623
+ 1,1,male,42.0,1,0,52.5542,S,First,man,True,D,Southampton,yes,False
624
+ 1,3,male,20.0,1,1,15.7417,C,Third,man,True,,Cherbourg,yes,False
625
+ 0,3,male,21.0,0,0,7.8542,S,Third,man,True,,Southampton,no,True
626
+ 0,3,male,21.0,0,0,16.1,S,Third,man,True,,Southampton,no,True
627
+ 0,1,male,61.0,0,0,32.3208,S,First,man,True,D,Southampton,no,True
628
+ 0,2,male,57.0,0,0,12.35,Q,Second,man,True,,Queenstown,no,True
629
+ 1,1,female,21.0,0,0,77.9583,S,First,woman,False,D,Southampton,yes,True
630
+ 0,3,male,26.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
631
+ 0,3,male,,0,0,7.7333,Q,Third,man,True,,Queenstown,no,True
632
+ 1,1,male,80.0,0,0,30.0,S,First,man,True,A,Southampton,yes,True
633
+ 0,3,male,51.0,0,0,7.0542,S,Third,man,True,,Southampton,no,True
634
+ 1,1,male,32.0,0,0,30.5,C,First,man,True,B,Cherbourg,yes,True
635
+ 0,1,male,,0,0,0.0,S,First,man,True,,Southampton,no,True
636
+ 0,3,female,9.0,3,2,27.9,S,Third,child,False,,Southampton,no,False
637
+ 1,2,female,28.0,0,0,13.0,S,Second,woman,False,,Southampton,yes,True
638
+ 0,3,male,32.0,0,0,7.925,S,Third,man,True,,Southampton,no,True
639
+ 0,2,male,31.0,1,1,26.25,S,Second,man,True,,Southampton,no,False
640
+ 0,3,female,41.0,0,5,39.6875,S,Third,woman,False,,Southampton,no,False
641
+ 0,3,male,,1,0,16.1,S,Third,man,True,,Southampton,no,False
642
+ 0,3,male,20.0,0,0,7.8542,S,Third,man,True,,Southampton,no,True
643
+ 1,1,female,24.0,0,0,69.3,C,First,woman,False,B,Cherbourg,yes,True
644
+ 0,3,female,2.0,3,2,27.9,S,Third,child,False,,Southampton,no,False
645
+ 1,3,male,,0,0,56.4958,S,Third,man,True,,Southampton,yes,True
646
+ 1,3,female,0.75,2,1,19.2583,C,Third,child,False,,Cherbourg,yes,False
647
+ 1,1,male,48.0,1,0,76.7292,C,First,man,True,D,Cherbourg,yes,False
648
+ 0,3,male,19.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
649
+ 1,1,male,56.0,0,0,35.5,C,First,man,True,A,Cherbourg,yes,True
650
+ 0,3,male,,0,0,7.55,S,Third,man,True,,Southampton,no,True
651
+ 1,3,female,23.0,0,0,7.55,S,Third,woman,False,,Southampton,yes,True
652
+ 0,3,male,,0,0,7.8958,S,Third,man,True,,Southampton,no,True
653
+ 1,2,female,18.0,0,1,23.0,S,Second,woman,False,,Southampton,yes,False
654
+ 0,3,male,21.0,0,0,8.4333,S,Third,man,True,,Southampton,no,True
655
+ 1,3,female,,0,0,7.8292,Q,Third,woman,False,,Queenstown,yes,True
656
+ 0,3,female,18.0,0,0,6.75,Q,Third,woman,False,,Queenstown,no,True
657
+ 0,2,male,24.0,2,0,73.5,S,Second,man,True,,Southampton,no,False
658
+ 0,3,male,,0,0,7.8958,S,Third,man,True,,Southampton,no,True
659
+ 0,3,female,32.0,1,1,15.5,Q,Third,woman,False,,Queenstown,no,False
660
+ 0,2,male,23.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
661
+ 0,1,male,58.0,0,2,113.275,C,First,man,True,D,Cherbourg,no,False
662
+ 1,1,male,50.0,2,0,133.65,S,First,man,True,,Southampton,yes,False
663
+ 0,3,male,40.0,0,0,7.225,C,Third,man,True,,Cherbourg,no,True
664
+ 0,1,male,47.0,0,0,25.5875,S,First,man,True,E,Southampton,no,True
665
+ 0,3,male,36.0,0,0,7.4958,S,Third,man,True,,Southampton,no,True
666
+ 1,3,male,20.0,1,0,7.925,S,Third,man,True,,Southampton,yes,False
667
+ 0,2,male,32.0,2,0,73.5,S,Second,man,True,,Southampton,no,False
668
+ 0,2,male,25.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
669
+ 0,3,male,,0,0,7.775,S,Third,man,True,,Southampton,no,True
670
+ 0,3,male,43.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
671
+ 1,1,female,,1,0,52.0,S,First,woman,False,C,Southampton,yes,False
672
+ 1,2,female,40.0,1,1,39.0,S,Second,woman,False,,Southampton,yes,False
673
+ 0,1,male,31.0,1,0,52.0,S,First,man,True,B,Southampton,no,False
674
+ 0,2,male,70.0,0,0,10.5,S,Second,man,True,,Southampton,no,True
675
+ 1,2,male,31.0,0,0,13.0,S,Second,man,True,,Southampton,yes,True
676
+ 0,2,male,,0,0,0.0,S,Second,man,True,,Southampton,no,True
677
+ 0,3,male,18.0,0,0,7.775,S,Third,man,True,,Southampton,no,True
678
+ 0,3,male,24.5,0,0,8.05,S,Third,man,True,,Southampton,no,True
679
+ 1,3,female,18.0,0,0,9.8417,S,Third,woman,False,,Southampton,yes,True
680
+ 0,3,female,43.0,1,6,46.9,S,Third,woman,False,,Southampton,no,False
681
+ 1,1,male,36.0,0,1,512.3292,C,First,man,True,B,Cherbourg,yes,False
682
+ 0,3,female,,0,0,8.1375,Q,Third,woman,False,,Queenstown,no,True
683
+ 1,1,male,27.0,0,0,76.7292,C,First,man,True,D,Cherbourg,yes,True
684
+ 0,3,male,20.0,0,0,9.225,S,Third,man,True,,Southampton,no,True
685
+ 0,3,male,14.0,5,2,46.9,S,Third,child,False,,Southampton,no,False
686
+ 0,2,male,60.0,1,1,39.0,S,Second,man,True,,Southampton,no,False
687
+ 0,2,male,25.0,1,2,41.5792,C,Second,man,True,,Cherbourg,no,False
688
+ 0,3,male,14.0,4,1,39.6875,S,Third,child,False,,Southampton,no,False
689
+ 0,3,male,19.0,0,0,10.1708,S,Third,man,True,,Southampton,no,True
690
+ 0,3,male,18.0,0,0,7.7958,S,Third,man,True,,Southampton,no,True
691
+ 1,1,female,15.0,0,1,211.3375,S,First,child,False,B,Southampton,yes,False
692
+ 1,1,male,31.0,1,0,57.0,S,First,man,True,B,Southampton,yes,False
693
+ 1,3,female,4.0,0,1,13.4167,C,Third,child,False,,Cherbourg,yes,False
694
+ 1,3,male,,0,0,56.4958,S,Third,man,True,,Southampton,yes,True
695
+ 0,3,male,25.0,0,0,7.225,C,Third,man,True,,Cherbourg,no,True
696
+ 0,1,male,60.0,0,0,26.55,S,First,man,True,,Southampton,no,True
697
+ 0,2,male,52.0,0,0,13.5,S,Second,man,True,,Southampton,no,True
698
+ 0,3,male,44.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
699
+ 1,3,female,,0,0,7.7333,Q,Third,woman,False,,Queenstown,yes,True
700
+ 0,1,male,49.0,1,1,110.8833,C,First,man,True,C,Cherbourg,no,False
701
+ 0,3,male,42.0,0,0,7.65,S,Third,man,True,F,Southampton,no,True
702
+ 1,1,female,18.0,1,0,227.525,C,First,woman,False,C,Cherbourg,yes,False
703
+ 1,1,male,35.0,0,0,26.2875,S,First,man,True,E,Southampton,yes,True
704
+ 0,3,female,18.0,0,1,14.4542,C,Third,woman,False,,Cherbourg,no,False
705
+ 0,3,male,25.0,0,0,7.7417,Q,Third,man,True,,Queenstown,no,True
706
+ 0,3,male,26.0,1,0,7.8542,S,Third,man,True,,Southampton,no,False
707
+ 0,2,male,39.0,0,0,26.0,S,Second,man,True,,Southampton,no,True
708
+ 1,2,female,45.0,0,0,13.5,S,Second,woman,False,,Southampton,yes,True
709
+ 1,1,male,42.0,0,0,26.2875,S,First,man,True,E,Southampton,yes,True
710
+ 1,1,female,22.0,0,0,151.55,S,First,woman,False,,Southampton,yes,True
711
+ 1,3,male,,1,1,15.2458,C,Third,man,True,,Cherbourg,yes,False
712
+ 1,1,female,24.0,0,0,49.5042,C,First,woman,False,C,Cherbourg,yes,True
713
+ 0,1,male,,0,0,26.55,S,First,man,True,C,Southampton,no,True
714
+ 1,1,male,48.0,1,0,52.0,S,First,man,True,C,Southampton,yes,False
715
+ 0,3,male,29.0,0,0,9.4833,S,Third,man,True,,Southampton,no,True
716
+ 0,2,male,52.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
717
+ 0,3,male,19.0,0,0,7.65,S,Third,man,True,F,Southampton,no,True
718
+ 1,1,female,38.0,0,0,227.525,C,First,woman,False,C,Cherbourg,yes,True
719
+ 1,2,female,27.0,0,0,10.5,S,Second,woman,False,E,Southampton,yes,True
720
+ 0,3,male,,0,0,15.5,Q,Third,man,True,,Queenstown,no,True
721
+ 0,3,male,33.0,0,0,7.775,S,Third,man,True,,Southampton,no,True
722
+ 1,2,female,6.0,0,1,33.0,S,Second,child,False,,Southampton,yes,False
723
+ 0,3,male,17.0,1,0,7.0542,S,Third,man,True,,Southampton,no,False
724
+ 0,2,male,34.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
725
+ 0,2,male,50.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
726
+ 1,1,male,27.0,1,0,53.1,S,First,man,True,E,Southampton,yes,False
727
+ 0,3,male,20.0,0,0,8.6625,S,Third,man,True,,Southampton,no,True
728
+ 1,2,female,30.0,3,0,21.0,S,Second,woman,False,,Southampton,yes,False
729
+ 1,3,female,,0,0,7.7375,Q,Third,woman,False,,Queenstown,yes,True
730
+ 0,2,male,25.0,1,0,26.0,S,Second,man,True,,Southampton,no,False
731
+ 0,3,female,25.0,1,0,7.925,S,Third,woman,False,,Southampton,no,False
732
+ 1,1,female,29.0,0,0,211.3375,S,First,woman,False,B,Southampton,yes,True
733
+ 0,3,male,11.0,0,0,18.7875,C,Third,child,False,,Cherbourg,no,True
734
+ 0,2,male,,0,0,0.0,S,Second,man,True,,Southampton,no,True
735
+ 0,2,male,23.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
736
+ 0,2,male,23.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
737
+ 0,3,male,28.5,0,0,16.1,S,Third,man,True,,Southampton,no,True
738
+ 0,3,female,48.0,1,3,34.375,S,Third,woman,False,,Southampton,no,False
739
+ 1,1,male,35.0,0,0,512.3292,C,First,man,True,B,Cherbourg,yes,True
740
+ 0,3,male,,0,0,7.8958,S,Third,man,True,,Southampton,no,True
741
+ 0,3,male,,0,0,7.8958,S,Third,man,True,,Southampton,no,True
742
+ 1,1,male,,0,0,30.0,S,First,man,True,D,Southampton,yes,True
743
+ 0,1,male,36.0,1,0,78.85,S,First,man,True,C,Southampton,no,False
744
+ 1,1,female,21.0,2,2,262.375,C,First,woman,False,B,Cherbourg,yes,False
745
+ 0,3,male,24.0,1,0,16.1,S,Third,man,True,,Southampton,no,False
746
+ 1,3,male,31.0,0,0,7.925,S,Third,man,True,,Southampton,yes,True
747
+ 0,1,male,70.0,1,1,71.0,S,First,man,True,B,Southampton,no,False
748
+ 0,3,male,16.0,1,1,20.25,S,Third,man,True,,Southampton,no,False
749
+ 1,2,female,30.0,0,0,13.0,S,Second,woman,False,,Southampton,yes,True
750
+ 0,1,male,19.0,1,0,53.1,S,First,man,True,D,Southampton,no,False
751
+ 0,3,male,31.0,0,0,7.75,Q,Third,man,True,,Queenstown,no,True
752
+ 1,2,female,4.0,1,1,23.0,S,Second,child,False,,Southampton,yes,False
753
+ 1,3,male,6.0,0,1,12.475,S,Third,child,False,E,Southampton,yes,False
754
+ 0,3,male,33.0,0,0,9.5,S,Third,man,True,,Southampton,no,True
755
+ 0,3,male,23.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
756
+ 1,2,female,48.0,1,2,65.0,S,Second,woman,False,,Southampton,yes,False
757
+ 1,2,male,0.67,1,1,14.5,S,Second,child,False,,Southampton,yes,False
758
+ 0,3,male,28.0,0,0,7.7958,S,Third,man,True,,Southampton,no,True
759
+ 0,2,male,18.0,0,0,11.5,S,Second,man,True,,Southampton,no,True
760
+ 0,3,male,34.0,0,0,8.05,S,Third,man,True,,Southampton,no,True
761
+ 1,1,female,33.0,0,0,86.5,S,First,woman,False,B,Southampton,yes,True
762
+ 0,3,male,,0,0,14.5,S,Third,man,True,,Southampton,no,True
763
+ 0,3,male,41.0,0,0,7.125,S,Third,man,True,,Southampton,no,True
764
+ 1,3,male,20.0,0,0,7.2292,C,Third,man,True,,Cherbourg,yes,True
765
+ 1,1,female,36.0,1,2,120.0,S,First,woman,False,B,Southampton,yes,False
766
+ 0,3,male,16.0,0,0,7.775,S,Third,man,True,,Southampton,no,True
767
+ 1,1,female,51.0,1,0,77.9583,S,First,woman,False,D,Southampton,yes,False
768
+ 0,1,male,,0,0,39.6,C,First,man,True,,Cherbourg,no,True
769
+ 0,3,female,30.5,0,0,7.75,Q,Third,woman,False,,Queenstown,no,True
770
+ 0,3,male,,1,0,24.15,Q,Third,man,True,,Queenstown,no,False
771
+ 0,3,male,32.0,0,0,8.3625,S,Third,man,True,,Southampton,no,True
772
+ 0,3,male,24.0,0,0,9.5,S,Third,man,True,,Southampton,no,True
773
+ 0,3,male,48.0,0,0,7.8542,S,Third,man,True,,Southampton,no,True
774
+ 0,2,female,57.0,0,0,10.5,S,Second,woman,False,E,Southampton,no,True
775
+ 0,3,male,,0,0,7.225,C,Third,man,True,,Cherbourg,no,True
776
+ 1,2,female,54.0,1,3,23.0,S,Second,woman,False,,Southampton,yes,False
777
+ 0,3,male,18.0,0,0,7.75,S,Third,man,True,,Southampton,no,True
778
+ 0,3,male,,0,0,7.75,Q,Third,man,True,F,Queenstown,no,True
779
+ 1,3,female,5.0,0,0,12.475,S,Third,child,False,,Southampton,yes,True
780
+ 0,3,male,,0,0,7.7375,Q,Third,man,True,,Queenstown,no,True
781
+ 1,1,female,43.0,0,1,211.3375,S,First,woman,False,B,Southampton,yes,False
782
+ 1,3,female,13.0,0,0,7.2292,C,Third,child,False,,Cherbourg,yes,True
783
+ 1,1,female,17.0,1,0,57.0,S,First,woman,False,B,Southampton,yes,False
784
+ 0,1,male,29.0,0,0,30.0,S,First,man,True,D,Southampton,no,True
785
+ 0,3,male,,1,2,23.45,S,Third,man,True,,Southampton,no,False
786
+ 0,3,male,25.0,0,0,7.05,S,Third,man,True,,Southampton,no,True
787
+ 0,3,male,25.0,0,0,7.25,S,Third,man,True,,Southampton,no,True
788
+ 1,3,female,18.0,0,0,7.4958,S,Third,woman,False,,Southampton,yes,True
789
+ 0,3,male,8.0,4,1,29.125,Q,Third,child,False,,Queenstown,no,False
790
+ 1,3,male,1.0,1,2,20.575,S,Third,child,False,,Southampton,yes,False
791
+ 0,1,male,46.0,0,0,79.2,C,First,man,True,B,Cherbourg,no,True
792
+ 0,3,male,,0,0,7.75,Q,Third,man,True,,Queenstown,no,True
793
+ 0,2,male,16.0,0,0,26.0,S,Second,man,True,,Southampton,no,True
794
+ 0,3,female,,8,2,69.55,S,Third,woman,False,,Southampton,no,False
795
+ 0,1,male,,0,0,30.6958,C,First,man,True,,Cherbourg,no,True
796
+ 0,3,male,25.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
797
+ 0,2,male,39.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
798
+ 1,1,female,49.0,0,0,25.9292,S,First,woman,False,D,Southampton,yes,True
799
+ 1,3,female,31.0,0,0,8.6833,S,Third,woman,False,,Southampton,yes,True
800
+ 0,3,male,30.0,0,0,7.2292,C,Third,man,True,,Cherbourg,no,True
801
+ 0,3,female,30.0,1,1,24.15,S,Third,woman,False,,Southampton,no,False
802
+ 0,2,male,34.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
803
+ 1,2,female,31.0,1,1,26.25,S,Second,woman,False,,Southampton,yes,False
804
+ 1,1,male,11.0,1,2,120.0,S,First,child,False,B,Southampton,yes,False
805
+ 1,3,male,0.42,0,1,8.5167,C,Third,child,False,,Cherbourg,yes,False
806
+ 1,3,male,27.0,0,0,6.975,S,Third,man,True,,Southampton,yes,True
807
+ 0,3,male,31.0,0,0,7.775,S,Third,man,True,,Southampton,no,True
808
+ 0,1,male,39.0,0,0,0.0,S,First,man,True,A,Southampton,no,True
809
+ 0,3,female,18.0,0,0,7.775,S,Third,woman,False,,Southampton,no,True
810
+ 0,2,male,39.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
811
+ 1,1,female,33.0,1,0,53.1,S,First,woman,False,E,Southampton,yes,False
812
+ 0,3,male,26.0,0,0,7.8875,S,Third,man,True,,Southampton,no,True
813
+ 0,3,male,39.0,0,0,24.15,S,Third,man,True,,Southampton,no,True
814
+ 0,2,male,35.0,0,0,10.5,S,Second,man,True,,Southampton,no,True
815
+ 0,3,female,6.0,4,2,31.275,S,Third,child,False,,Southampton,no,False
816
+ 0,3,male,30.5,0,0,8.05,S,Third,man,True,,Southampton,no,True
817
+ 0,1,male,,0,0,0.0,S,First,man,True,B,Southampton,no,True
818
+ 0,3,female,23.0,0,0,7.925,S,Third,woman,False,,Southampton,no,True
819
+ 0,2,male,31.0,1,1,37.0042,C,Second,man,True,,Cherbourg,no,False
820
+ 0,3,male,43.0,0,0,6.45,S,Third,man,True,,Southampton,no,True
821
+ 0,3,male,10.0,3,2,27.9,S,Third,child,False,,Southampton,no,False
822
+ 1,1,female,52.0,1,1,93.5,S,First,woman,False,B,Southampton,yes,False
823
+ 1,3,male,27.0,0,0,8.6625,S,Third,man,True,,Southampton,yes,True
824
+ 0,1,male,38.0,0,0,0.0,S,First,man,True,,Southampton,no,True
825
+ 1,3,female,27.0,0,1,12.475,S,Third,woman,False,E,Southampton,yes,False
826
+ 0,3,male,2.0,4,1,39.6875,S,Third,child,False,,Southampton,no,False
827
+ 0,3,male,,0,0,6.95,Q,Third,man,True,,Queenstown,no,True
828
+ 0,3,male,,0,0,56.4958,S,Third,man,True,,Southampton,no,True
829
+ 1,2,male,1.0,0,2,37.0042,C,Second,child,False,,Cherbourg,yes,False
830
+ 1,3,male,,0,0,7.75,Q,Third,man,True,,Queenstown,yes,True
831
+ 1,1,female,62.0,0,0,80.0,,First,woman,False,B,,yes,True
832
+ 1,3,female,15.0,1,0,14.4542,C,Third,child,False,,Cherbourg,yes,False
833
+ 1,2,male,0.83,1,1,18.75,S,Second,child,False,,Southampton,yes,False
834
+ 0,3,male,,0,0,7.2292,C,Third,man,True,,Cherbourg,no,True
835
+ 0,3,male,23.0,0,0,7.8542,S,Third,man,True,,Southampton,no,True
836
+ 0,3,male,18.0,0,0,8.3,S,Third,man,True,,Southampton,no,True
837
+ 1,1,female,39.0,1,1,83.1583,C,First,woman,False,E,Cherbourg,yes,False
838
+ 0,3,male,21.0,0,0,8.6625,S,Third,man,True,,Southampton,no,True
839
+ 0,3,male,,0,0,8.05,S,Third,man,True,,Southampton,no,True
840
+ 1,3,male,32.0,0,0,56.4958,S,Third,man,True,,Southampton,yes,True
841
+ 1,1,male,,0,0,29.7,C,First,man,True,C,Cherbourg,yes,True
842
+ 0,3,male,20.0,0,0,7.925,S,Third,man,True,,Southampton,no,True
843
+ 0,2,male,16.0,0,0,10.5,S,Second,man,True,,Southampton,no,True
844
+ 1,1,female,30.0,0,0,31.0,C,First,woman,False,,Cherbourg,yes,True
845
+ 0,3,male,34.5,0,0,6.4375,C,Third,man,True,,Cherbourg,no,True
846
+ 0,3,male,17.0,0,0,8.6625,S,Third,man,True,,Southampton,no,True
847
+ 0,3,male,42.0,0,0,7.55,S,Third,man,True,,Southampton,no,True
848
+ 0,3,male,,8,2,69.55,S,Third,man,True,,Southampton,no,False
849
+ 0,3,male,35.0,0,0,7.8958,C,Third,man,True,,Cherbourg,no,True
850
+ 0,2,male,28.0,0,1,33.0,S,Second,man,True,,Southampton,no,False
851
+ 1,1,female,,1,0,89.1042,C,First,woman,False,C,Cherbourg,yes,False
852
+ 0,3,male,4.0,4,2,31.275,S,Third,child,False,,Southampton,no,False
853
+ 0,3,male,74.0,0,0,7.775,S,Third,man,True,,Southampton,no,True
854
+ 0,3,female,9.0,1,1,15.2458,C,Third,child,False,,Cherbourg,no,False
855
+ 1,1,female,16.0,0,1,39.4,S,First,woman,False,D,Southampton,yes,False
856
+ 0,2,female,44.0,1,0,26.0,S,Second,woman,False,,Southampton,no,False
857
+ 1,3,female,18.0,0,1,9.35,S,Third,woman,False,,Southampton,yes,False
858
+ 1,1,female,45.0,1,1,164.8667,S,First,woman,False,,Southampton,yes,False
859
+ 1,1,male,51.0,0,0,26.55,S,First,man,True,E,Southampton,yes,True
860
+ 1,3,female,24.0,0,3,19.2583,C,Third,woman,False,,Cherbourg,yes,False
861
+ 0,3,male,,0,0,7.2292,C,Third,man,True,,Cherbourg,no,True
862
+ 0,3,male,41.0,2,0,14.1083,S,Third,man,True,,Southampton,no,False
863
+ 0,2,male,21.0,1,0,11.5,S,Second,man,True,,Southampton,no,False
864
+ 1,1,female,48.0,0,0,25.9292,S,First,woman,False,D,Southampton,yes,True
865
+ 0,3,female,,8,2,69.55,S,Third,woman,False,,Southampton,no,False
866
+ 0,2,male,24.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
867
+ 1,2,female,42.0,0,0,13.0,S,Second,woman,False,,Southampton,yes,True
868
+ 1,2,female,27.0,1,0,13.8583,C,Second,woman,False,,Cherbourg,yes,False
869
+ 0,1,male,31.0,0,0,50.4958,S,First,man,True,A,Southampton,no,True
870
+ 0,3,male,,0,0,9.5,S,Third,man,True,,Southampton,no,True
871
+ 1,3,male,4.0,1,1,11.1333,S,Third,child,False,,Southampton,yes,False
872
+ 0,3,male,26.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
873
+ 1,1,female,47.0,1,1,52.5542,S,First,woman,False,D,Southampton,yes,False
874
+ 0,1,male,33.0,0,0,5.0,S,First,man,True,B,Southampton,no,True
875
+ 0,3,male,47.0,0,0,9.0,S,Third,man,True,,Southampton,no,True
876
+ 1,2,female,28.0,1,0,24.0,C,Second,woman,False,,Cherbourg,yes,False
877
+ 1,3,female,15.0,0,0,7.225,C,Third,child,False,,Cherbourg,yes,True
878
+ 0,3,male,20.0,0,0,9.8458,S,Third,man,True,,Southampton,no,True
879
+ 0,3,male,19.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
880
+ 0,3,male,,0,0,7.8958,S,Third,man,True,,Southampton,no,True
881
+ 1,1,female,56.0,0,1,83.1583,C,First,woman,False,C,Cherbourg,yes,False
882
+ 1,2,female,25.0,0,1,26.0,S,Second,woman,False,,Southampton,yes,False
883
+ 0,3,male,33.0,0,0,7.8958,S,Third,man,True,,Southampton,no,True
884
+ 0,3,female,22.0,0,0,10.5167,S,Third,woman,False,,Southampton,no,True
885
+ 0,2,male,28.0,0,0,10.5,S,Second,man,True,,Southampton,no,True
886
+ 0,3,male,25.0,0,0,7.05,S,Third,man,True,,Southampton,no,True
887
+ 0,3,female,39.0,0,5,29.125,Q,Third,woman,False,,Queenstown,no,False
888
+ 0,2,male,27.0,0,0,13.0,S,Second,man,True,,Southampton,no,True
889
+ 1,1,female,19.0,0,0,30.0,S,First,woman,False,B,Southampton,yes,True
890
+ 0,3,female,,1,2,23.45,S,Third,woman,False,,Southampton,no,False
891
+ 1,1,male,26.0,0,0,30.0,C,First,man,True,C,Cherbourg,yes,True
892
+ 0,3,male,32.0,0,0,7.75,Q,Third,man,True,,Queenstown,no,True
data/seaborn/README.md ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ seaborn-data
2
+ ============
3
+
4
+ Data repository for [seaborn](http://seaborn.pydata.org/) examples.
5
+
6
+ | :warning: This is not a general-purpose data archive :warning: |
7
+ | :---: |
8
+
9
+ This repository exists only to provide a convenient target for the `seaborn.load_dataset` function to download sample datasets from. Its existence makes it easy to document seaborn without confusing things by spending time loading and munging data. The datasets may change or be removed at any time if they are no longer useful for the seaborn documentation. Some of the datasets have also been modifed from their canonical sources.
10
+
11
+ Data sources
12
+ ------------
13
+
14
+ A partial list of where these datasets originate from.
15
+
16
+ - `anagrams`: https://psych252.github.io/
17
+ - `anscombe`: https://en.wikipedia.org/wiki/Anscombe%27s_quartet
18
+ - `attention`: https://psych252.github.io/
19
+ - `car_crashes`: https://www.kaggle.com/fivethirtyeight/fivethirtyeight-bad-drivers-dataset
20
+ - `diamonds`: https://ggplot2.tidyverse.org/reference/diamonds.html
21
+ - `dots`: https://shadlenlab.columbia.edu/resources/RoitmanDataCode.html
22
+ - `dowjones`: https://fred.stlouisfed.org/series/M1109BUSM293NNBR
23
+ - `exercise`: https://psych252.github.io
24
+ - `fmri`: https://github.com/mwaskom/Waskom_CerebCortex_2017
25
+ - `geyser`: https://stat.ethz.ch/R-manual/R-devel/library/datasets/html/faithful.html
26
+ - `glue`: https://gluebenchmark.com/leaderboard
27
+ - `healthexp`: https://ourworldindata.org/grapher/life-expectancy-vs-health-expenditure
28
+ - `iris`: https://archive.ics.uci.edu/ml/datasets/iris
29
+ - `mpg`: https://data.world/dataman-udit/cars-data
30
+ - `penguins`: https://github.com/allisonhorst/penguins
31
+ - `planets`: https://exoplanets.nasa.gov/exoplanet-catalog/
32
+ - `seaice`: https://nsidc.org/arcticseaicenews/sea-ice-tools/
33
+ - `taxis`: https://www1.nyc.gov/site/tlc/about/tlc-trip-record-data.page
34
+ - `tips`: https://rdrr.io/cran/reshape2/man/tips.html
35
+ - `titanic`: https://www.kaggle.com/c/titanic/data
data/seaborn/anagrams.csv ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ subidr,attnr,num1,num2,num3
2
+ 1,divided,2,4,7
3
+ 2,divided,3,4,5
4
+ 3,divided,3,5,6
5
+ 4,divided,5,7,5
6
+ 5,divided,4,5,8
7
+ 6,divided,5,5,6
8
+ 7,divided,5,4.5,6
9
+ 8,divided,5,7,8
10
+ 9,divided,2,3,7
11
+ 10,divided,6,5,6
12
+ 11,focused,6,5,6
13
+ 12,focused,8,9,8
14
+ 13,focused,6,5,9
15
+ 14,focused,8,8,7
16
+ 15,focused,8,8,7
17
+ 16,focused,6,8,7
18
+ 17,focused,7,7,6
19
+ 18,focused,7,8,6
20
+ 19,focused,5,6,6
21
+ 20,focused,6,6,5
data/seaborn/anscombe.csv ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ dataset,x,y
2
+ I,10.0,8.04
3
+ I,8.0,6.95
4
+ I,13.0,7.58
5
+ I,9.0,8.81
6
+ I,11.0,8.33
7
+ I,14.0,9.96
8
+ I,6.0,7.24
9
+ I,4.0,4.26
10
+ I,12.0,10.84
11
+ I,7.0,4.82
12
+ I,5.0,5.68
13
+ II,10.0,9.14
14
+ II,8.0,8.14
15
+ II,13.0,8.74
16
+ II,9.0,8.77
17
+ II,11.0,9.26
18
+ II,14.0,8.1
19
+ II,6.0,6.13
20
+ II,4.0,3.1
21
+ II,12.0,9.13
22
+ II,7.0,7.26
23
+ II,5.0,4.74
24
+ III,10.0,7.46
25
+ III,8.0,6.77
26
+ III,13.0,12.74
27
+ III,9.0,7.11
28
+ III,11.0,7.81
29
+ III,14.0,8.84
30
+ III,6.0,6.08
31
+ III,4.0,5.39
32
+ III,12.0,8.15
33
+ III,7.0,6.42
34
+ III,5.0,5.73
35
+ IV,8.0,6.58
36
+ IV,8.0,5.76
37
+ IV,8.0,7.71
38
+ IV,8.0,8.84
39
+ IV,8.0,8.47
40
+ IV,8.0,7.04
41
+ IV,8.0,5.25
42
+ IV,19.0,12.5
43
+ IV,8.0,5.56
44
+ IV,8.0,7.91
45
+ IV,8.0,6.89
data/seaborn/attention.csv ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,subject,attention,solutions,score
2
+ 0,1,divided,1,2.0
3
+ 1,2,divided,1,3.0
4
+ 2,3,divided,1,3.0
5
+ 3,4,divided,1,5.0
6
+ 4,5,divided,1,4.0
7
+ 5,6,divided,1,5.0
8
+ 6,7,divided,1,5.0
9
+ 7,8,divided,1,5.0
10
+ 8,9,divided,1,2.0
11
+ 9,10,divided,1,6.0
12
+ 10,11,focused,1,6.0
13
+ 11,12,focused,1,8.0
14
+ 12,13,focused,1,6.0
15
+ 13,14,focused,1,8.0
16
+ 14,15,focused,1,8.0
17
+ 15,16,focused,1,6.0
18
+ 16,17,focused,1,7.0
19
+ 17,18,focused,1,7.0
20
+ 18,19,focused,1,5.0
21
+ 19,20,focused,1,6.0
22
+ 20,1,divided,2,4.0
23
+ 21,2,divided,2,4.0
24
+ 22,3,divided,2,5.0
25
+ 23,4,divided,2,7.0
26
+ 24,5,divided,2,5.0
27
+ 25,6,divided,2,5.0
28
+ 26,7,divided,2,4.5
29
+ 27,8,divided,2,7.0
30
+ 28,9,divided,2,3.0
31
+ 29,10,divided,2,5.0
32
+ 30,11,focused,2,5.0
33
+ 31,12,focused,2,9.0
34
+ 32,13,focused,2,5.0
35
+ 33,14,focused,2,8.0
36
+ 34,15,focused,2,8.0
37
+ 35,16,focused,2,8.0
38
+ 36,17,focused,2,7.0
39
+ 37,18,focused,2,8.0
40
+ 38,19,focused,2,6.0
41
+ 39,20,focused,2,6.0
42
+ 40,1,divided,3,7.0
43
+ 41,2,divided,3,5.0
44
+ 42,3,divided,3,6.0
45
+ 43,4,divided,3,5.0
46
+ 44,5,divided,3,8.0
47
+ 45,6,divided,3,6.0
48
+ 46,7,divided,3,6.0
49
+ 47,8,divided,3,8.0
50
+ 48,9,divided,3,7.0
51
+ 49,10,divided,3,6.0
52
+ 50,11,focused,3,6.0
53
+ 51,12,focused,3,8.0
54
+ 52,13,focused,3,9.0
55
+ 53,14,focused,3,7.0
56
+ 54,15,focused,3,7.0
57
+ 55,16,focused,3,7.0
58
+ 56,17,focused,3,6.0
59
+ 57,18,focused,3,6.0
60
+ 58,19,focused,3,6.0
61
+ 59,20,focused,3,5.0
data/seaborn/brain_networks.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/seaborn/car_crashes.csv ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ total,speeding,alcohol,not_distracted,no_previous,ins_premium,ins_losses,abbrev
2
+ 18.8,7.332000000000001,5.64,18.048000000000002,15.04,784.55,145.08,AL
3
+ 18.1,7.421,4.525,16.290000000000003,17.014,1053.48,133.93,AK
4
+ 18.6,6.51,5.208000000000001,15.624,17.856,899.47,110.35,AZ
5
+ 22.4,4.032,5.824,21.055999999999997,21.28,827.34,142.39,AR
6
+ 12.0,4.2,3.36,10.92,10.68,878.41,165.63,CA
7
+ 13.6,5.032,3.8080000000000003,10.743999999999998,12.92,835.5,139.91,CO
8
+ 10.8,4.968,3.888,9.396,8.856,1068.73,167.02,CT
9
+ 16.2,6.156000000000001,4.86,14.094,16.038,1137.87,151.48,DE
10
+ 5.9,2.0060000000000002,1.5930000000000002,5.9,5.9,1273.89,136.05,DC
11
+ 17.9,3.759,5.190999999999999,16.468,16.826,1160.13,144.18,FL
12
+ 15.6,2.964,3.9,14.82,14.508,913.15,142.8,GA
13
+ 17.5,9.45,7.175,14.35,15.225,861.18,120.92,HI
14
+ 15.3,5.508000000000001,4.437,13.005,14.994000000000002,641.96,82.75,ID
15
+ 12.8,4.6080000000000005,4.352,12.032,12.288000000000002,803.11,139.15,IL
16
+ 14.5,3.625,4.205,13.775,13.775,710.46,108.92,IN
17
+ 15.7,2.6689999999999996,3.925,15.229,13.658999999999999,649.06,114.47,IA
18
+ 17.8,4.806,4.272,13.706000000000001,15.13,780.45,133.8,KS
19
+ 21.4,4.066,4.922,16.691999999999997,16.264,872.51,137.13,KY
20
+ 20.5,7.175,6.765,14.965,20.09,1281.55,194.78,LA
21
+ 15.1,5.7379999999999995,4.53,13.137,12.684,661.88,96.57,ME
22
+ 12.5,4.25,4.0,8.875,12.375,1048.78,192.7,MD
23
+ 8.2,1.886,2.87,7.1339999999999995,6.56,1011.14,135.63,MA
24
+ 14.1,3.384,3.948,13.395,10.857000000000001,1110.61,152.26,MI
25
+ 9.6,2.2079999999999997,2.784,8.448,8.448,777.18,133.35,MN
26
+ 17.6,2.64,5.456,1.76,17.6,896.07,155.77,MS
27
+ 16.1,6.923000000000001,5.474000000000001,14.812000000000001,13.524000000000001,790.32,144.45,MO
28
+ 21.4,8.345999999999998,9.415999999999999,17.976,18.189999999999998,816.21,85.15,MT
29
+ 14.9,1.9370000000000003,5.215,13.857000000000001,13.41,732.28,114.82,NE
30
+ 14.7,5.439,4.704,13.965,14.552999999999999,1029.87,138.71,NV
31
+ 11.6,4.06,3.48,10.091999999999999,9.628,746.54,120.21,NH
32
+ 11.2,1.7919999999999998,3.1359999999999997,9.632,8.735999999999999,1301.52,159.85,NJ
33
+ 18.4,3.4959999999999996,4.968,12.328,18.031999999999996,869.85,120.75,NM
34
+ 12.3,3.9360000000000004,3.5670000000000006,10.824000000000002,9.84,1234.31,150.01,NY
35
+ 16.8,6.5520000000000005,5.208000000000001,15.792,13.607999999999999,708.24,127.82,NC
36
+ 23.9,5.496999999999999,10.038,23.660999999999998,20.554000000000002,688.75,109.72,ND
37
+ 14.1,3.948,4.794,13.958999999999998,11.562000000000001,697.73,133.52,OH
38
+ 19.9,6.367999999999999,5.770999999999999,18.308,18.706,881.51,178.86,OK
39
+ 12.8,4.224,3.3280000000000003,8.576,11.52,804.71,104.61,OR
40
+ 18.2,9.1,5.6419999999999995,17.471999999999998,16.016,905.99,153.86,PA
41
+ 11.1,3.7739999999999996,4.218,10.212,8.769,1148.99,148.58,RI
42
+ 23.9,9.081999999999999,9.799,22.943999999999996,19.358999999999998,858.97,116.29,SC
43
+ 19.4,6.013999999999999,6.401999999999999,19.011999999999997,16.683999999999997,669.31,96.87,SD
44
+ 19.5,4.095,5.655,15.99,15.795,767.91,155.57,TN
45
+ 19.4,7.76,7.371999999999999,17.654,16.878,1004.75,156.83,TX
46
+ 11.3,4.859,1.808,9.944,10.848000000000003,809.38,109.48,UT
47
+ 13.6,4.08,4.08,13.056,12.92,716.2,109.61,VT
48
+ 12.7,2.413,3.429,11.049,11.175999999999998,768.95,153.72,VA
49
+ 10.6,4.452,3.498,8.692,9.116,890.03,111.62,WA
50
+ 23.8,8.092,6.664,23.086,20.706,992.61,152.56,WV
51
+ 13.8,4.968,4.554,5.382000000000001,11.592,670.31,106.62,WI
52
+ 17.4,7.308,5.568,14.094,15.659999999999998,791.14,122.04,WY
data/seaborn/dataset_names.txt ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ anagrams
2
+ anscombe
3
+ attention
4
+ brain_networks
5
+ car_crashes
6
+ diamonds
7
+ dots
8
+ dowjones
9
+ exercise
10
+ flights
11
+ fmri
12
+ geyser
13
+ glue
14
+ healthexp
15
+ iris
16
+ mpg
17
+ penguins
18
+ planets
19
+ seaice
20
+ taxis
21
+ tips
22
+ titanic
data/seaborn/diamonds.csv ADDED
The diff for this file is too large to render. See raw diff
 
data/seaborn/dots.csv ADDED
@@ -0,0 +1,849 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ align,choice,time,coherence,firing_rate
2
+ dots,T1,-80,0.0,33.1899674031
3
+ dots,T1,-80,3.2,31.6917255152
4
+ dots,T1,-80,6.4,34.2798399644
5
+ dots,T1,-80,12.8,32.6318742985
6
+ dots,T1,-80,25.6,35.0604874577
7
+ dots,T1,-80,51.2,34.9875710227
8
+ dots,T1,-60,0.0,32.8685258964
9
+ dots,T1,-60,3.2,35.119047619
10
+ dots,T1,-60,6.4,34.8410757946
11
+ dots,T1,-60,12.8,35.6481481481
12
+ dots,T1,-60,25.6,33.6105675147
13
+ dots,T1,-60,51.2,34.27734375
14
+ dots,T1,-40,0.0,34.561752988
15
+ dots,T1,-40,3.2,34.8958333333
16
+ dots,T1,-40,6.4,34.9633251834
17
+ dots,T1,-40,12.8,36.4711934156
18
+ dots,T1,-40,25.6,32.5342465753
19
+ dots,T1,-40,51.2,35.009765625
20
+ dots,T1,-20,0.0,35.3585657371
21
+ dots,T1,-20,3.2,31.1011904762
22
+ dots,T1,-20,6.4,35.5134474328
23
+ dots,T1,-20,12.8,34.5164609053
24
+ dots,T1,-20,25.6,34.7847358121
25
+ dots,T1,-20,51.2,36.669921875
26
+ dots,T1,0,0.0,36.2549800797
27
+ dots,T1,0,3.2,32.3660714286
28
+ dots,T1,0,6.4,36.9193154034
29
+ dots,T1,0,12.8,35.6995884774
30
+ dots,T1,0,25.6,35.8610567515
31
+ dots,T1,0,51.2,37.060546875
32
+ dots,T1,20,0.0,38.4960159363
33
+ dots,T1,20,3.2,33.4821428571
34
+ dots,T1,20,6.4,36.1858190709
35
+ dots,T1,20,12.8,36.0082304527
36
+ dots,T1,20,25.6,34.8825831703
37
+ dots,T1,20,51.2,35.888671875
38
+ dots,T1,40,0.0,36.2051792829
39
+ dots,T1,40,3.2,34.375
40
+ dots,T1,40,6.4,36.7970660147
41
+ dots,T1,40,12.8,35.3909465021
42
+ dots,T1,40,25.6,36.9863013699
43
+ dots,T1,40,51.2,36.279296875
44
+ dots,T1,60,0.0,34.7609561753
45
+ dots,T1,60,3.2,34.6726190476
46
+ dots,T1,60,6.4,38.2029339853
47
+ dots,T1,60,12.8,35.6481481481
48
+ dots,T1,60,25.6,38.0136986301
49
+ dots,T1,60,51.2,37.79296875
50
+ dots,T1,80,0.0,36.5537848606
51
+ dots,T1,80,3.2,32.3660714286
52
+ dots,T1,80,6.4,35.5745721271
53
+ dots,T1,80,12.8,33.7448559671
54
+ dots,T1,80,25.6,35.5675146771
55
+ dots,T1,80,51.2,37.353515625
56
+ dots,T1,100,0.0,33.515936255
57
+ dots,T1,100,3.2,31.5476190476
58
+ dots,T1,100,6.4,33.0073349633
59
+ dots,T1,100,12.8,32.2666032773
60
+ dots,T1,100,25.6,32.28962818
61
+ dots,T1,100,51.2,35.25390625
62
+ dots,T1,120,0.0,31.6733067729
63
+ dots,T1,120,3.2,30.8779761905
64
+ dots,T1,120,6.4,31.9682151589
65
+ dots,T1,120,12.8,32.7986405205
66
+ dots,T1,120,25.6,29.6966731898
67
+ dots,T1,120,51.2,33.349609375
68
+ dots,T1,140,0.0,32.1215139442
69
+ dots,T1,140,3.2,30.0970758473
70
+ dots,T1,140,6.4,31.173594132
71
+ dots,T1,140,12.8,31.1927760396
72
+ dots,T1,140,25.6,29.3052837573
73
+ dots,T1,140,51.2,31.3593367034
74
+ dots,T1,160,0.0,34.4621513944
75
+ dots,T1,160,3.2,33.0191183554
76
+ dots,T1,160,6.4,33.6797066015
77
+ dots,T1,160,12.8,31.9922938189
78
+ dots,T1,160,25.6,33.0684130789
79
+ dots,T1,160,51.2,31.4144049073
80
+ dots,T1,180,0.0,37.5857760456
81
+ dots,T1,180,3.2,39.206226297
82
+ dots,T1,180,6.4,38.4799298148
83
+ dots,T1,180,12.8,38.2790725256
84
+ dots,T1,180,25.6,38.0283572714
85
+ dots,T1,180,51.2,35.2981969562
86
+ dots,T1,200,0.0,41.3876308811
87
+ dots,T1,200,3.2,43.0009045681
88
+ dots,T1,200,6.4,42.8315775134
89
+ dots,T1,200,12.8,44.1881669593
90
+ dots,T1,200,25.6,43.2053130261
91
+ dots,T1,200,51.2,44.0021276055
92
+ dots,T1,220,0.0,45.2145741795
93
+ dots,T1,220,3.2,44.0531572195
94
+ dots,T1,220,6.4,44.5503067614
95
+ dots,T1,220,12.8,46.0072153238
96
+ dots,T1,220,25.6,46.6656178604
97
+ dots,T1,220,51.2,49.4455590075
98
+ dots,T1,240,0.0,44.426667193
99
+ dots,T1,240,3.2,45.5579976408
100
+ dots,T1,240,6.4,45.3353150482
101
+ dots,T1,240,12.8,45.2545114631
102
+ dots,T1,240,25.6,48.057998072
103
+ dots,T1,240,51.2,52.8138549965
104
+ dots,T1,260,0.0,43.5176761377
105
+ dots,T1,260,3.2,46.4806723604
106
+ dots,T1,260,6.4,45.975678826
107
+ dots,T1,260,12.8,45.978011874
108
+ dots,T1,260,25.6,51.49830443
109
+ dots,T1,260,51.2,56.0062634769
110
+ dots,T1,280,0.0,45.183845031
111
+ dots,T1,280,3.2,46.7680543787
112
+ dots,T1,280,6.4,47.6079465912
113
+ dots,T1,280,12.8,49.4179484906
114
+ dots,T1,280,25.6,53.4063507726
115
+ dots,T1,280,51.2,56.5709270698
116
+ dots,T1,300,0.0,44.5806310958
117
+ dots,T1,300,3.2,47.7403311288
118
+ dots,T1,300,6.4,47.9453145595
119
+ dots,T1,300,12.8,50.884901111
120
+ dots,T1,300,25.6,53.9921770122
121
+ dots,T1,320,0.0,42.1883499648
122
+ dots,T1,320,3.2,46.1091773662
123
+ dots,T1,320,6.4,46.9297722083
124
+ dots,T1,320,12.8,50.5475711692
125
+ dots,T1,320,25.6,54.2706099715
126
+ dots,T1,340,0.0,41.7881832087
127
+ dots,T1,340,3.2,45.6333595786
128
+ dots,T1,340,6.4,47.6741978356
129
+ dots,T1,340,12.8,49.8453330566
130
+ dots,T1,340,25.6,55.4833048133
131
+ dots,T1,360,0.0,43.8889398626
132
+ dots,T1,360,3.2,47.8811790178
133
+ dots,T1,360,6.4,50.4307958419
134
+ dots,T1,360,12.8,50.5637453923
135
+ dots,T1,360,25.6,57.6132002761
136
+ dots,T1,380,0.0,46.7939865745
137
+ dots,T1,380,3.2,46.0362955566
138
+ dots,T1,380,6.4,50.2350060629
139
+ dots,T1,380,12.8,51.839563305
140
+ dots,T1,380,25.6,57.9308464384
141
+ dots,T1,400,0.0,45.4823942827
142
+ dots,T1,400,3.2,45.3563633893
143
+ dots,T1,400,6.4,48.816525836
144
+ dots,T1,400,12.8,52.3134685064
145
+ dots,T1,400,25.6,58.2719153733
146
+ dots,T1,420,0.0,45.2294029647
147
+ dots,T1,420,3.2,47.370806321
148
+ dots,T1,420,6.4,51.0426760675
149
+ dots,T1,420,12.8,54.3442280151
150
+ dots,T1,420,25.6,58.7792250482
151
+ dots,T1,440,0.0,47.5705138296
152
+ dots,T1,440,3.2,47.8962913334
153
+ dots,T1,440,6.4,52.8451380575
154
+ dots,T1,440,12.8,56.5905120229
155
+ dots,T1,460,0.0,47.9965125796
156
+ dots,T1,460,3.2,49.7589895528
157
+ dots,T1,460,6.4,54.6071568221
158
+ dots,T1,460,12.8,57.6417931949
159
+ dots,T1,480,0.0,47.4221784572
160
+ dots,T1,480,3.2,50.2088029789
161
+ dots,T1,480,6.4,56.3631120383
162
+ dots,T1,480,12.8,57.336239303
163
+ dots,T1,500,0.0,48.4253715445
164
+ dots,T1,500,3.2,49.8924509929
165
+ dots,T1,500,6.4,56.3159583107
166
+ dots,T1,500,12.8,57.8834341936
167
+ dots,T1,520,0.0,49.8483600507
168
+ dots,T1,520,3.2,49.395357585
169
+ dots,T1,520,6.4,55.6257450533
170
+ dots,T1,520,12.8,56.7031475447
171
+ dots,T1,540,0.0,51.4958439254
172
+ dots,T1,540,3.2,48.066627973
173
+ dots,T1,540,6.4,52.6625406001
174
+ dots,T1,540,12.8,56.5965566665
175
+ dots,T1,560,0.0,53.8839724539
176
+ dots,T1,560,3.2,48.6514774419
177
+ dots,T1,560,6.4,51.2677935943
178
+ dots,T1,560,12.8,57.4458518599
179
+ dots,T1,580,0.0,53.0430826028
180
+ dots,T1,580,3.2,50.928916973
181
+ dots,T1,580,6.4,55.3879064133
182
+ dots,T1,600,0.0,52.1063146794
183
+ dots,T1,600,3.2,50.4609948656
184
+ dots,T1,600,6.4,58.3763412771
185
+ dots,T1,620,0.0,51.9722589882
186
+ dots,T1,620,3.2,49.6072463942
187
+ dots,T1,620,6.4,58.4313296726
188
+ dots,T1,640,0.0,51.4946850007
189
+ dots,T1,640,3.2,53.7183234006
190
+ dots,T1,660,0.0,51.3666266822
191
+ dots,T1,660,3.2,56.9613202683
192
+ dots,T1,680,0.0,52.6740476122
193
+ dots,T1,680,3.2,57.0799478842
194
+ dots,T1,700,0.0,52.6806817764
195
+ dots,T1,720,0.0,51.299586053
196
+ dots,T2,-80,0.0,34.9701072622
197
+ dots,T2,-80,3.2,36.7858148044
198
+ dots,T2,-80,6.4,34.4785059901
199
+ dots,T2,-80,12.8,34.9914236707
200
+ dots,T2,-80,25.6,32.2415329768
201
+ dots,T2,-80,51.2,32.6330162086
202
+ dots,T2,-60,0.0,33.8491295938
203
+ dots,T2,-60,3.2,35.6811145511
204
+ dots,T2,-60,6.4,35.5943152455
205
+ dots,T2,-60,12.8,33.2285115304
206
+ dots,T2,-60,25.6,34.0196078431
207
+ dots,T2,-60,51.2,33.8662790698
208
+ dots,T2,-40,0.0,35.2030947776
209
+ dots,T2,-40,3.2,35.5263157895
210
+ dots,T2,-40,6.4,35.0129198966
211
+ dots,T2,-40,12.8,34.9056603774
212
+ dots,T2,-40,25.6,34.7058823529
213
+ dots,T2,-40,51.2,33.0910852713
214
+ dots,T2,-20,0.0,35.1063829787
215
+ dots,T2,-20,3.2,34.9845201238
216
+ dots,T2,-20,6.4,36.3695090439
217
+ dots,T2,-20,12.8,36.320754717
218
+ dots,T2,-20,25.6,34.8529411765
219
+ dots,T2,-20,51.2,35.3197674419
220
+ dots,T2,0,0.0,34.1392649903
221
+ dots,T2,0,3.2,36.1455108359
222
+ dots,T2,0,6.4,37.8552971576
223
+ dots,T2,0,12.8,36.0062893082
224
+ dots,T2,0,25.6,34.4117647059
225
+ dots,T2,0,51.2,35.6104651163
226
+ dots,T2,20,0.0,35.9767891683
227
+ dots,T2,20,3.2,38.3900928793
228
+ dots,T2,20,6.4,36.9509043928
229
+ dots,T2,20,12.8,36.8972746331
230
+ dots,T2,20,25.6,34.362745098
231
+ dots,T2,20,51.2,33.8178294574
232
+ dots,T2,40,0.0,36.3636363636
233
+ dots,T2,40,3.2,40.4024767802
234
+ dots,T2,40,6.4,35.9819121447
235
+ dots,T2,40,12.8,37.8406708595
236
+ dots,T2,40,25.6,35.9803921569
237
+ dots,T2,40,51.2,36.1918604651
238
+ dots,T2,60,0.0,34.7195357834
239
+ dots,T2,60,3.2,37.4613003096
240
+ dots,T2,60,6.4,35.4005167959
241
+ dots,T2,60,12.8,37.0545073375
242
+ dots,T2,60,25.6,35.8823529412
243
+ dots,T2,60,51.2,37.8391472868
244
+ dots,T2,80,0.0,35.3965183752
245
+ dots,T2,80,3.2,34.0557275542
246
+ dots,T2,80,6.4,33.5917312661
247
+ dots,T2,80,12.8,36.0062893082
248
+ dots,T2,80,25.6,35.3431372549
249
+ dots,T2,80,51.2,35.6589147287
250
+ dots,T2,100,0.0,31.8665377176
251
+ dots,T2,100,3.2,33.2817337461
252
+ dots,T2,100,6.4,31.3953488372
253
+ dots,T2,100,12.8,33.3333333333
254
+ dots,T2,100,25.6,33.6764705882
255
+ dots,T2,100,51.2,32.6550387597
256
+ dots,T2,120,0.0,29.6905222437
257
+ dots,T2,120,3.2,32.1207430341
258
+ dots,T2,120,6.4,30.9492892804
259
+ dots,T2,120,12.8,30.5063756889
260
+ dots,T2,120,25.6,31.2745098039
261
+ dots,T2,120,51.2,30.6686046512
262
+ dots,T2,140,0.0,31.5280464217
263
+ dots,T2,140,3.2,30.572755418
264
+ dots,T2,140,6.4,32.4888754083
265
+ dots,T2,140,12.8,30.6956495116
266
+ dots,T2,140,25.6,31.3725490196
267
+ dots,T2,140,51.2,31.4084685455
268
+ dots,T2,160,0.0,33.4622823985
269
+ dots,T2,160,3.2,31.9399161621
270
+ dots,T2,160,6.4,34.1883327301
271
+ dots,T2,160,12.8,33.4109778842
272
+ dots,T2,160,25.6,33.0303469437
273
+ dots,T2,160,51.2,33.4367357364
274
+ dots,T2,180,0.0,38.2070547501
275
+ dots,T2,180,3.2,37.8712163752
276
+ dots,T2,180,6.4,38.5042012826
277
+ dots,T2,180,12.8,38.4719004777
278
+ dots,T2,180,25.6,37.0775301438
279
+ dots,T2,180,51.2,38.2633844689
280
+ dots,T2,200,0.0,42.7578085722
281
+ dots,T2,200,3.2,42.2897196262
282
+ dots,T2,200,6.4,42.9949986829
283
+ dots,T2,200,12.8,41.5088392695
284
+ dots,T2,200,25.6,41.8176444453
285
+ dots,T2,200,51.2,43.1074684774
286
+ dots,T2,220,0.0,44.5909389003
287
+ dots,T2,220,3.2,45.3417177461
288
+ dots,T2,220,6.4,45.4000593486
289
+ dots,T2,220,12.8,41.8565530425
290
+ dots,T2,220,25.6,42.4234549444
291
+ dots,T2,220,51.2,40.6228763776
292
+ dots,T2,240,0.0,43.3291259446
293
+ dots,T2,240,3.2,45.5698126733
294
+ dots,T2,240,6.4,46.0860105176
295
+ dots,T2,240,12.8,41.9135577374
296
+ dots,T2,240,25.6,39.0738361103
297
+ dots,T2,240,51.2,37.4852335411
298
+ dots,T2,260,0.0,43.3132225106
299
+ dots,T2,260,3.2,43.3325723491
300
+ dots,T2,260,6.4,43.3791616022
301
+ dots,T2,260,12.8,41.9109630979
302
+ dots,T2,260,25.6,37.912397605
303
+ dots,T2,260,51.2,36.7127196352
304
+ dots,T2,280,0.0,44.0351005894
305
+ dots,T2,280,3.2,40.7781018409
306
+ dots,T2,280,6.4,42.3074505091
307
+ dots,T2,280,12.8,38.8754812498
308
+ dots,T2,280,25.6,38.1344925275
309
+ dots,T2,280,51.2,35.9808003647
310
+ dots,T2,300,0.0,42.9985009362
311
+ dots,T2,300,3.2,40.6293355403
312
+ dots,T2,300,6.4,42.5742920171
313
+ dots,T2,300,12.8,37.7958539325
314
+ dots,T2,300,25.6,36.2919354435
315
+ dots,T2,300,51.2,34.1760123767
316
+ dots,T2,320,0.0,39.8459992058
317
+ dots,T2,320,3.2,38.6301686727
318
+ dots,T2,320,6.4,41.2207626677
319
+ dots,T2,320,12.8,35.5155038833
320
+ dots,T2,320,25.6,33.6229546792
321
+ dots,T2,320,51.2,33.7686320342
322
+ dots,T2,340,0.0,38.294630264
323
+ dots,T2,340,3.2,39.2359539907
324
+ dots,T2,340,6.4,41.5255817987
325
+ dots,T2,340,12.8,34.3093086994
326
+ dots,T2,340,25.6,31.1869789361
327
+ dots,T2,360,0.0,38.7832089442
328
+ dots,T2,360,3.2,40.5201660452
329
+ dots,T2,360,6.4,40.2438173059
330
+ dots,T2,360,12.8,37.3473010589
331
+ dots,T2,360,25.6,30.9096204221
332
+ dots,T2,380,0.0,37.7037571598
333
+ dots,T2,380,3.2,37.8557504873
334
+ dots,T2,380,6.4,38.1466711944
335
+ dots,T2,380,12.8,36.4564971115
336
+ dots,T2,380,25.6,30.4264563351
337
+ dots,T2,400,0.0,39.742881112
338
+ dots,T2,400,3.2,37.7696727599
339
+ dots,T2,400,6.4,37.282919343
340
+ dots,T2,400,12.8,36.5347678542
341
+ dots,T2,400,25.6,27.8518122463
342
+ dots,T2,420,0.0,41.3684007973
343
+ dots,T2,420,3.2,38.8926908711
344
+ dots,T2,420,6.4,36.7202937136
345
+ dots,T2,420,12.8,35.1082370207
346
+ dots,T2,420,25.6,27.861418733
347
+ dots,T2,440,0.0,40.6496445189
348
+ dots,T2,440,3.2,39.9098650911
349
+ dots,T2,440,6.4,38.0156523023
350
+ dots,T2,440,12.8,35.2694954062
351
+ dots,T2,440,25.6,29.81667219
352
+ dots,T2,460,0.0,42.7507271759
353
+ dots,T2,460,3.2,39.6852155867
354
+ dots,T2,460,6.4,38.520175851
355
+ dots,T2,460,12.8,36.5036817188
356
+ dots,T2,480,0.0,41.6795939186
357
+ dots,T2,480,3.2,38.2746541855
358
+ dots,T2,480,6.4,38.0980698037
359
+ dots,T2,480,12.8,34.0660031252
360
+ dots,T2,500,0.0,38.0762367984
361
+ dots,T2,500,3.2,38.7038940633
362
+ dots,T2,500,6.4,39.399412391
363
+ dots,T2,500,12.8,36.6778056607
364
+ dots,T2,520,0.0,40.3020387251
365
+ dots,T2,520,3.2,38.768191293
366
+ dots,T2,520,6.4,37.1402778543
367
+ dots,T2,520,12.8,36.8786473739
368
+ dots,T2,540,0.0,41.3666539656
369
+ dots,T2,540,3.2,37.1782371295
370
+ dots,T2,540,6.4,35.8263885332
371
+ dots,T2,540,12.8,33.7657325009
372
+ dots,T2,560,0.0,42.1411371631
373
+ dots,T2,560,3.2,39.4878074198
374
+ dots,T2,560,6.4,36.8214417656
375
+ dots,T2,560,12.8,33.73267699
376
+ dots,T2,580,0.0,40.6285403536
377
+ dots,T2,580,3.2,41.2384548086
378
+ dots,T2,580,6.4,36.1422793814
379
+ dots,T2,600,0.0,38.626129285
380
+ dots,T2,600,3.2,38.9859711621
381
+ dots,T2,600,6.4,36.4593012697
382
+ dots,T2,620,0.0,41.6313731495
383
+ dots,T2,620,3.2,40.9941162703
384
+ dots,T2,620,6.4,35.3408471901
385
+ dots,T2,640,0.0,41.3093764734
386
+ dots,T2,640,3.2,42.9420765936
387
+ dots,T2,640,6.4,37.8523264371
388
+ dots,T2,660,0.0,40.65999957
389
+ dots,T2,660,3.2,39.3419135381
390
+ dots,T2,680,0.0,42.454915858
391
+ dots,T2,680,3.2,37.8062672369
392
+ dots,T2,700,0.0,43.4649588514
393
+ dots,T2,700,3.2,38.994559118
394
+ dots,T2,720,0.0,41.9871213179
395
+ dots,T2,720,3.2,41.7160565573
396
+ sacc,T1,-600,0.0,45.2325120377
397
+ sacc,T1,-580,0.0,45.4264028997
398
+ sacc,T1,-560,0.0,43.0716466126
399
+ sacc,T1,-560,3.2,44.6334707376
400
+ sacc,T1,-540,0.0,45.4794313401
401
+ sacc,T1,-540,3.2,44.2150705016
402
+ sacc,T1,-520,0.0,45.506553529
403
+ sacc,T1,-520,3.2,45.6483325386
404
+ sacc,T1,-500,0.0,45.4151502861
405
+ sacc,T1,-500,3.2,45.9241043648
406
+ sacc,T1,-500,6.4,50.0619965618
407
+ sacc,T1,-480,0.0,48.160760903
408
+ sacc,T1,-480,3.2,45.7282215546
409
+ sacc,T1,-480,6.4,49.6277218935
410
+ sacc,T1,-460,0.0,46.3937943881
411
+ sacc,T1,-460,3.2,47.06353638
412
+ sacc,T1,-460,6.4,51.0213340154
413
+ sacc,T1,-440,0.0,43.5141711801
414
+ sacc,T1,-440,3.2,47.6131067824
415
+ sacc,T1,-440,6.4,48.7946689049
416
+ sacc,T1,-440,12.8,49.603478703
417
+ sacc,T1,-420,0.0,45.6403332059
418
+ sacc,T1,-420,3.2,48.9830083705
419
+ sacc,T1,-420,6.4,51.0323809137
420
+ sacc,T1,-420,12.8,51.9676391845
421
+ sacc,T1,-400,0.0,48.8318863322
422
+ sacc,T1,-400,3.2,47.171291067
423
+ sacc,T1,-400,6.4,52.5509987955
424
+ sacc,T1,-400,12.8,51.7947628697
425
+ sacc,T1,-380,0.0,50.8980590583
426
+ sacc,T1,-380,3.2,48.9092059523
427
+ sacc,T1,-380,6.4,48.8474113348
428
+ sacc,T1,-380,12.8,52.0292508296
429
+ sacc,T1,-360,0.0,51.2067586014
430
+ sacc,T1,-360,3.2,50.2840383861
431
+ sacc,T1,-360,6.4,50.145345275
432
+ sacc,T1,-360,12.8,53.2630051358
433
+ sacc,T1,-340,0.0,50.2800233932
434
+ sacc,T1,-340,3.2,50.0120454694
435
+ sacc,T1,-340,6.4,52.2716382085
436
+ sacc,T1,-340,12.8,53.0778335811
437
+ sacc,T1,-320,0.0,49.4086709956
438
+ sacc,T1,-320,3.2,51.7156662265
439
+ sacc,T1,-320,6.4,53.0425605954
440
+ sacc,T1,-320,12.8,53.4673586898
441
+ sacc,T1,-300,0.0,49.1203942708
442
+ sacc,T1,-300,3.2,49.418248136
443
+ sacc,T1,-300,6.4,54.0102823529
444
+ sacc,T1,-300,12.8,54.6096601316
445
+ sacc,T1,-300,25.6,54.1875464625
446
+ sacc,T1,-280,0.0,51.6971579109
447
+ sacc,T1,-280,3.2,51.0207341541
448
+ sacc,T1,-280,6.4,55.7411082083
449
+ sacc,T1,-280,12.8,53.2776573023
450
+ sacc,T1,-280,25.6,54.5064306881
451
+ sacc,T1,-260,0.0,52.6379444601
452
+ sacc,T1,-260,3.2,52.6249011151
453
+ sacc,T1,-260,6.4,56.567696028
454
+ sacc,T1,-260,12.8,53.945858687
455
+ sacc,T1,-260,25.6,55.0692362824
456
+ sacc,T1,-240,0.0,51.2549672581
457
+ sacc,T1,-240,3.2,52.5865121943
458
+ sacc,T1,-240,6.4,53.8916036035
459
+ sacc,T1,-240,12.8,55.8665513894
460
+ sacc,T1,-240,25.6,54.0660056789
461
+ sacc,T1,-220,0.0,50.5983703221
462
+ sacc,T1,-220,3.2,51.4625155232
463
+ sacc,T1,-220,6.4,54.3207205125
464
+ sacc,T1,-220,12.8,55.9107111914
465
+ sacc,T1,-220,25.6,53.4235227174
466
+ sacc,T1,-200,0.0,54.0969887257
467
+ sacc,T1,-200,3.2,52.8902388815
468
+ sacc,T1,-200,6.4,57.2658855352
469
+ sacc,T1,-200,12.8,55.8513473336
470
+ sacc,T1,-200,25.6,54.30218802
471
+ sacc,T1,-180,0.0,56.0836482647
472
+ sacc,T1,-180,3.2,54.6633426001
473
+ sacc,T1,-180,6.4,56.5684880076
474
+ sacc,T1,-180,12.8,57.0138948985
475
+ sacc,T1,-180,25.6,56.7413467363
476
+ sacc,T1,-160,0.0,55.3505702695
477
+ sacc,T1,-160,3.2,53.8272331128
478
+ sacc,T1,-160,6.4,56.7240292283
479
+ sacc,T1,-160,12.8,58.1193158789
480
+ sacc,T1,-160,25.6,58.6021829868
481
+ sacc,T1,-160,51.2,54.8967997613
482
+ sacc,T1,-140,0.0,57.1593256173
483
+ sacc,T1,-140,3.2,56.5769900664
484
+ sacc,T1,-140,6.4,56.7545502426
485
+ sacc,T1,-140,12.8,59.1831621625
486
+ sacc,T1,-140,25.6,58.7923267235
487
+ sacc,T1,-140,51.2,57.8214569751
488
+ sacc,T1,-120,0.0,58.53308329
489
+ sacc,T1,-120,3.2,59.1191539695
490
+ sacc,T1,-120,6.4,58.9815430655
491
+ sacc,T1,-120,12.8,61.3557810869
492
+ sacc,T1,-120,25.6,59.4419114489
493
+ sacc,T1,-120,51.2,59.6895693369
494
+ sacc,T1,-100,0.0,59.4948613645
495
+ sacc,T1,-100,3.2,62.7954637729
496
+ sacc,T1,-100,6.4,62.4863240028
497
+ sacc,T1,-100,12.8,62.6925464066
498
+ sacc,T1,-100,25.6,59.4754759182
499
+ sacc,T1,-100,51.2,59.1229508662
500
+ sacc,T1,-80,0.0,62.1398334413
501
+ sacc,T1,-80,3.2,63.6967779056
502
+ sacc,T1,-80,6.4,63.6803949111
503
+ sacc,T1,-80,12.8,63.7975062565
504
+ sacc,T1,-80,25.6,60.746123495
505
+ sacc,T1,-80,51.2,61.6545577621
506
+ sacc,T1,-60,0.0,63.9918381337
507
+ sacc,T1,-60,3.2,64.0885489132
508
+ sacc,T1,-60,6.4,65.9275648059
509
+ sacc,T1,-60,12.8,64.4531213517
510
+ sacc,T1,-60,25.6,65.0785915901
511
+ sacc,T1,-60,51.2,62.7558667307
512
+ sacc,T1,-40,0.0,65.9860557769
513
+ sacc,T1,-40,3.2,66.4632254083
514
+ sacc,T1,-40,6.4,67.7872860636
515
+ sacc,T1,-40,12.8,67.6494487948
516
+ sacc,T1,-40,25.6,67.4806695911
517
+ sacc,T1,-40,51.2,66.6127927521
518
+ sacc,T1,-20,0.0,68.3764940239
519
+ sacc,T1,-20,3.2,66.8195604614
520
+ sacc,T1,-20,6.4,68.2762836186
521
+ sacc,T1,-20,12.8,69.8335976272
522
+ sacc,T1,-20,25.6,69.2759295499
523
+ sacc,T1,-20,51.2,69.2525512899
524
+ sacc,T1,0,0.0,67.6792828685
525
+ sacc,T1,0,3.2,66.443452381
526
+ sacc,T1,0,6.4,70.0488997555
527
+ sacc,T1,0,12.8,68.1668870183
528
+ sacc,T1,0,25.6,69.5694716243
529
+ sacc,T1,0,51.2,67.87109375
530
+ sacc,T1,20,0.0,63.8446215139
531
+ sacc,T1,20,3.2,65.0297619048
532
+ sacc,T1,20,6.4,66.9926650367
533
+ sacc,T1,20,12.8,62.6236601367
534
+ sacc,T1,20,25.6,66.2426614481
535
+ sacc,T1,20,51.2,66.455078125
536
+ sacc,T1,40,0.0,60.3585657371
537
+ sacc,T1,40,3.2,60.193452381
538
+ sacc,T1,40,6.4,58.5574572127
539
+ sacc,T1,40,12.8,59.0020576132
540
+ sacc,T1,40,25.6,62.084148728
541
+ sacc,T1,40,51.2,62.939453125
542
+ sacc,T1,60,0.0,53.2370517928
543
+ sacc,T1,60,3.2,51.2648809524
544
+ sacc,T1,60,6.4,51.95599022
545
+ sacc,T1,60,12.8,52.3148148148
546
+ sacc,T1,60,25.6,52.8375733855
547
+ sacc,T1,60,51.2,53.61328125
548
+ sacc,T1,80,0.0,44.3725099602
549
+ sacc,T1,80,3.2,43.75
550
+ sacc,T1,80,6.4,45.2322738386
551
+ sacc,T1,80,12.8,42.0781893004
552
+ sacc,T1,80,25.6,44.373776908
553
+ sacc,T1,80,51.2,44.677734375
554
+ sacc,T1,100,0.0,37.5996015936
555
+ sacc,T1,100,3.2,38.244047619
556
+ sacc,T1,100,6.4,37.1638141809
557
+ sacc,T1,100,12.8,36.1111111111
558
+ sacc,T1,100,25.6,37.915851272
559
+ sacc,T1,100,51.2,37.744140625
560
+ sacc,T1,120,0.0,30.8266932271
561
+ sacc,T1,120,3.2,29.9851190476
562
+ sacc,T1,120,6.4,30.8679706601
563
+ sacc,T1,120,12.8,29.6296296296
564
+ sacc,T1,120,25.6,29.6966731898
565
+ sacc,T1,120,51.2,31.494140625
566
+ sacc,T1,140,0.0,25.8964143426
567
+ sacc,T1,140,3.2,23.2142857143
568
+ sacc,T1,140,6.4,24.3887530562
569
+ sacc,T1,140,12.8,24.6399176955
570
+ sacc,T1,140,25.6,23.5812133072
571
+ sacc,T1,140,51.2,25.87890625
572
+ sacc,T1,160,0.0,20.3685258964
573
+ sacc,T1,160,3.2,20.3125
574
+ sacc,T1,160,6.4,19.3765281174
575
+ sacc,T1,160,12.8,19.5473251029
576
+ sacc,T1,160,25.6,18.6888454012
577
+ sacc,T1,160,51.2,21.044921875
578
+ sacc,T1,180,0.0,14.4422310757
579
+ sacc,T1,180,3.2,16.0714285714
580
+ sacc,T1,180,6.4,16.564792176
581
+ sacc,T1,180,12.8,14.866255144
582
+ sacc,T1,180,25.6,14.481409002
583
+ sacc,T1,180,51.2,16.89453125
584
+ sacc,T1,200,0.0,10.4581673307
585
+ sacc,T1,200,3.2,12.7838338423
586
+ sacc,T1,200,6.4,13.141809291
587
+ sacc,T1,200,12.8,12.4485596708
588
+ sacc,T1,200,25.6,11.1056751468
589
+ sacc,T1,200,51.2,13.330078125
590
+ sacc,T1,220,0.0,8.71513944223
591
+ sacc,T1,220,3.2,10.6859286565
592
+ sacc,T1,220,6.4,9.35207823961
593
+ sacc,T1,220,12.8,10.0823045267
594
+ sacc,T1,220,25.6,10.3718199609
595
+ sacc,T1,220,51.2,11.474609375
596
+ sacc,T1,240,0.0,8.86454183267
597
+ sacc,T1,240,3.2,8.30860534125
598
+ sacc,T1,240,6.4,7.45721271394
599
+ sacc,T1,240,12.8,8.48765432099
600
+ sacc,T1,240,25.6,9.93150684932
601
+ sacc,T1,240,51.2,9.47265625
602
+ sacc,T1,260,0.0,7.76892430279
603
+ sacc,T1,260,3.2,6.89910979228
604
+ sacc,T1,260,6.4,7.39608801956
605
+ sacc,T1,260,12.8,7.61316872428
606
+ sacc,T1,260,25.6,8.12133072407
607
+ sacc,T1,260,51.2,8.251953125
608
+ sacc,T1,280,0.0,6.47410358566
609
+ sacc,T1,280,3.2,7.34421364985
610
+ sacc,T1,280,6.4,7.21271393643
611
+ sacc,T1,280,12.8,6.27572016461
612
+ sacc,T1,280,25.6,7.48532289628
613
+ sacc,T1,280,51.2,8.056640625
614
+ sacc,T1,300,0.0,6.57370517928
615
+ sacc,T1,300,3.2,6.6765578635
616
+ sacc,T1,300,6.4,7.0293398533
617
+ sacc,T1,300,12.8,6.37860082305
618
+ sacc,T1,300,25.6,6.60469667319
619
+ sacc,T1,300,51.2,7.666015625
620
+ sacc,T2,-600,0.0,44.2103307115
621
+ sacc,T2,-600,3.2,43.0738351627
622
+ sacc,T2,-580,0.0,42.0951655159
623
+ sacc,T2,-580,3.2,43.0756767503
624
+ sacc,T2,-560,0.0,42.1253513485
625
+ sacc,T2,-560,3.2,45.285452736
626
+ sacc,T2,-540,0.0,44.1789711798
627
+ sacc,T2,-540,3.2,44.4708434932
628
+ sacc,T2,-520,0.0,43.3521961356
629
+ sacc,T2,-520,3.2,41.5618016122
630
+ sacc,T2,-520,6.4,44.2199954188
631
+ sacc,T2,-500,0.0,43.1815199497
632
+ sacc,T2,-500,3.2,42.8556154206
633
+ sacc,T2,-500,6.4,42.4625739991
634
+ sacc,T2,-480,0.0,40.9459448349
635
+ sacc,T2,-480,3.2,41.8233212614
636
+ sacc,T2,-480,6.4,45.1344918679
637
+ sacc,T2,-460,0.0,40.0093039819
638
+ sacc,T2,-460,3.2,40.537176289
639
+ sacc,T2,-460,6.4,42.6259401288
640
+ sacc,T2,-440,0.0,43.0018202785
641
+ sacc,T2,-440,3.2,39.4091538793
642
+ sacc,T2,-440,6.4,40.2619258987
643
+ sacc,T2,-440,12.8,41.1419903616
644
+ sacc,T2,-420,0.0,42.3766444199
645
+ sacc,T2,-420,3.2,39.5781225037
646
+ sacc,T2,-420,6.4,41.5610024235
647
+ sacc,T2,-420,12.8,40.409673204
648
+ sacc,T2,-400,0.0,40.6714853979
649
+ sacc,T2,-400,3.2,41.2375491667
650
+ sacc,T2,-400,6.4,40.9429357455
651
+ sacc,T2,-400,12.8,38.5119562086
652
+ sacc,T2,-380,0.0,43.2876446613
653
+ sacc,T2,-380,3.2,42.085900587
654
+ sacc,T2,-380,6.4,39.9689553885
655
+ sacc,T2,-380,12.8,39.7333761332
656
+ sacc,T2,-360,0.0,43.3612315989
657
+ sacc,T2,-360,3.2,42.4194708691
658
+ sacc,T2,-360,6.4,41.5804848172
659
+ sacc,T2,-360,12.8,40.044420197
660
+ sacc,T2,-340,0.0,39.8762267679
661
+ sacc,T2,-340,3.2,42.0788697858
662
+ sacc,T2,-340,6.4,41.9028758554
663
+ sacc,T2,-340,12.8,38.3120025573
664
+ sacc,T2,-320,0.0,40.4448454043
665
+ sacc,T2,-320,3.2,40.1513880957
666
+ sacc,T2,-320,6.4,40.4341352507
667
+ sacc,T2,-320,12.8,37.7310662817
668
+ sacc,T2,-320,25.6,37.0585131882
669
+ sacc,T2,-300,0.0,40.887184232
670
+ sacc,T2,-300,3.2,38.9407023685
671
+ sacc,T2,-300,6.4,41.2580403278
672
+ sacc,T2,-300,12.8,38.124344213
673
+ sacc,T2,-300,25.6,36.0738072395
674
+ sacc,T2,-280,0.0,41.1947056441
675
+ sacc,T2,-280,3.2,39.5680329223
676
+ sacc,T2,-280,6.4,38.3602705272
677
+ sacc,T2,-280,12.8,37.3681995607
678
+ sacc,T2,-280,25.6,33.8812336651
679
+ sacc,T2,-260,0.0,41.0136327071
680
+ sacc,T2,-260,3.2,38.3195658023
681
+ sacc,T2,-260,6.4,36.4397887275
682
+ sacc,T2,-260,12.8,36.2032193868
683
+ sacc,T2,-260,25.6,31.805921065
684
+ sacc,T2,-240,0.0,41.8416740624
685
+ sacc,T2,-240,3.2,36.0275741717
686
+ sacc,T2,-240,6.4,37.6898636484
687
+ sacc,T2,-240,12.8,36.5745098348
688
+ sacc,T2,-240,25.6,31.6444372473
689
+ sacc,T2,-220,0.0,44.2495790872
690
+ sacc,T2,-220,3.2,37.0695086704
691
+ sacc,T2,-220,6.4,37.956359877
692
+ sacc,T2,-220,12.8,37.3919401512
693
+ sacc,T2,-220,25.6,31.3636734123
694
+ sacc,T2,-200,0.0,42.1919635126
695
+ sacc,T2,-200,3.2,38.0726715912
696
+ sacc,T2,-200,6.4,37.0371458417
697
+ sacc,T2,-200,12.8,36.5375027453
698
+ sacc,T2,-200,25.6,31.830531567
699
+ sacc,T2,-200,51.2,34.278488404
700
+ sacc,T2,-180,0.0,39.9167537004
701
+ sacc,T2,-180,3.2,37.9308811524
702
+ sacc,T2,-180,6.4,36.3390296669
703
+ sacc,T2,-180,12.8,35.0061872356
704
+ sacc,T2,-180,25.6,32.4350363538
705
+ sacc,T2,-180,51.2,34.4335537627
706
+ sacc,T2,-160,0.0,40.8200657039
707
+ sacc,T2,-160,3.2,38.2566962825
708
+ sacc,T2,-160,6.4,36.7686859329
709
+ sacc,T2,-160,12.8,33.0507600504
710
+ sacc,T2,-160,25.6,32.3455813934
711
+ sacc,T2,-160,51.2,33.426397216
712
+ sacc,T2,-140,0.0,41.6360762294
713
+ sacc,T2,-140,3.2,36.5123153677
714
+ sacc,T2,-140,6.4,37.072901881
715
+ sacc,T2,-140,12.8,32.8615628189
716
+ sacc,T2,-140,25.6,29.9254467262
717
+ sacc,T2,-140,51.2,32.6695852309
718
+ sacc,T2,-120,0.0,39.9027077915
719
+ sacc,T2,-120,3.2,35.8890690743
720
+ sacc,T2,-120,6.4,38.9400053932
721
+ sacc,T2,-120,12.8,33.160408053
722
+ sacc,T2,-120,25.6,28.7117587722
723
+ sacc,T2,-120,51.2,32.3783626069
724
+ sacc,T2,-100,0.0,39.8545786265
725
+ sacc,T2,-100,3.2,37.6253424388
726
+ sacc,T2,-100,6.4,37.2592360274
727
+ sacc,T2,-100,12.8,31.7857081144
728
+ sacc,T2,-100,25.6,28.5092773179
729
+ sacc,T2,-100,51.2,30.3214636813
730
+ sacc,T2,-80,0.0,39.0686538561
731
+ sacc,T2,-80,3.2,38.3177570093
732
+ sacc,T2,-80,6.4,37.1092892429
733
+ sacc,T2,-80,12.8,31.6706619895
734
+ sacc,T2,-80,25.6,27.1673864252
735
+ sacc,T2,-80,51.2,27.5442304251
736
+ sacc,T2,-60,0.0,37.8178588842
737
+ sacc,T2,-60,3.2,36.0756294232
738
+ sacc,T2,-60,6.4,38.4960754833
739
+ sacc,T2,-60,12.8,31.2421028491
740
+ sacc,T2,-60,25.6,27.0994763722
741
+ sacc,T2,-60,51.2,27.8371555374
742
+ sacc,T2,-40,0.0,37.8626692456
743
+ sacc,T2,-40,3.2,35.2618508867
744
+ sacc,T2,-40,6.4,35.2250005049
745
+ sacc,T2,-40,12.8,29.1523049649
746
+ sacc,T2,-40,25.6,28.0553221978
747
+ sacc,T2,-40,51.2,27.4957625592
748
+ sacc,T2,-20,0.0,35.8800773694
749
+ sacc,T2,-20,3.2,34.9845201238
750
+ sacc,T2,-20,6.4,34.2941079289
751
+ sacc,T2,-20,12.8,28.8572631065
752
+ sacc,T2,-20,25.6,27.6470588235
753
+ sacc,T2,-20,51.2,26.7883724699
754
+ sacc,T2,0,0.0,34.912959381
755
+ sacc,T2,0,3.2,32.5851393189
756
+ sacc,T2,0,6.4,32.8856784499
757
+ sacc,T2,0,12.8,27.726905303
758
+ sacc,T2,0,25.6,25.3431372549
759
+ sacc,T2,0,51.2,25.5329457364
760
+ sacc,T2,20,0.0,32.9787234043
761
+ sacc,T2,20,3.2,31.73374613
762
+ sacc,T2,20,6.4,30.7493540052
763
+ sacc,T2,20,12.8,25.9958071279
764
+ sacc,T2,20,25.6,25.0490196078
765
+ sacc,T2,20,51.2,23.8856589147
766
+ sacc,T2,40,0.0,32.833655706
767
+ sacc,T2,40,3.2,34.6749226006
768
+ sacc,T2,40,6.4,31.65374677
769
+ sacc,T2,40,12.8,28.7211740042
770
+ sacc,T2,40,25.6,28.3333333333
771
+ sacc,T2,40,51.2,28.003875969
772
+ sacc,T2,60,0.0,30.9477756286
773
+ sacc,T2,60,3.2,34.520123839
774
+ sacc,T2,60,6.4,30.9431524548
775
+ sacc,T2,60,12.8,30.9224318658
776
+ sacc,T2,60,25.6,29.1666666667
777
+ sacc,T2,60,51.2,29.8449612403
778
+ sacc,T2,80,0.0,24.7098646035
779
+ sacc,T2,80,3.2,27.0897832817
780
+ sacc,T2,80,6.4,27.7777777778
781
+ sacc,T2,80,12.8,27.6729559748
782
+ sacc,T2,80,25.6,26.2254901961
783
+ sacc,T2,80,51.2,27.4709302326
784
+ sacc,T2,100,0.0,25.8704061896
785
+ sacc,T2,100,3.2,26.7027863777
786
+ sacc,T2,100,6.4,27.1963824289
787
+ sacc,T2,100,12.8,27.463312369
788
+ sacc,T2,100,25.6,28.1862745098
789
+ sacc,T2,100,51.2,29.1666666667
790
+ sacc,T2,120,0.0,28.3849129594
791
+ sacc,T2,120,3.2,30.959752322
792
+ sacc,T2,120,6.4,28.2945736434
793
+ sacc,T2,120,12.8,29.4549266247
794
+ sacc,T2,120,25.6,31.9117647059
795
+ sacc,T2,120,51.2,32.2189922481
796
+ sacc,T2,140,0.0,27.3694390716
797
+ sacc,T2,140,3.2,29.6439628483
798
+ sacc,T2,140,6.4,29.0697674419
799
+ sacc,T2,140,12.8,30.2410901468
800
+ sacc,T2,140,25.6,30.2450980392
801
+ sacc,T2,140,51.2,32.4612403101
802
+ sacc,T2,160,0.0,27.9013539652
803
+ sacc,T2,160,3.2,30.2631578947
804
+ sacc,T2,160,6.4,30.6201550388
805
+ sacc,T2,160,12.8,30.1362683438
806
+ sacc,T2,160,25.6,29.8039215686
807
+ sacc,T2,160,51.2,33.1395348837
808
+ sacc,T2,180,0.0,29.9323017408
809
+ sacc,T2,180,3.2,32.6625386997
810
+ sacc,T2,180,6.4,29.6511627907
811
+ sacc,T2,180,12.8,28.9832285115
812
+ sacc,T2,180,25.6,30.4411764706
813
+ sacc,T2,180,51.2,32.9457364341
814
+ sacc,T2,200,0.0,29.7388781431
815
+ sacc,T2,200,3.2,29.7213622291
816
+ sacc,T2,200,6.4,29.0051679587
817
+ sacc,T2,200,12.8,28.4067085954
818
+ sacc,T2,200,25.6,29.9509803922
819
+ sacc,T2,200,51.2,31.2984496124
820
+ sacc,T2,220,0.0,27.5628626692
821
+ sacc,T2,220,3.2,29.6439628483
822
+ sacc,T2,220,6.4,29.0697674419
823
+ sacc,T2,220,12.8,27.1488469602
824
+ sacc,T2,220,25.6,27.5490196078
825
+ sacc,T2,220,51.2,30.1356589147
826
+ sacc,T2,240,0.0,28.6750483559
827
+ sacc,T2,240,3.2,29.5665634675
828
+ sacc,T2,240,6.4,29.8449612403
829
+ sacc,T2,240,12.8,26.9916142558
830
+ sacc,T2,240,25.6,27.8921568627
831
+ sacc,T2,240,51.2,30.2810077519
832
+ sacc,T2,260,0.0,28.8201160542
833
+ sacc,T2,260,3.2,26.8575851393
834
+ sacc,T2,260,6.4,29.9095607235
835
+ sacc,T2,260,12.8,28.1446540881
836
+ sacc,T2,260,25.6,28.5784313725
837
+ sacc,T2,260,51.2,31.1046511628
838
+ sacc,T2,280,0.0,28.6750483559
839
+ sacc,T2,280,3.2,30.4953560372
840
+ sacc,T2,280,6.4,27.5839793282
841
+ sacc,T2,280,12.8,28.5115303983
842
+ sacc,T2,280,25.6,26.4705882353
843
+ sacc,T2,280,51.2,30.8139534884
844
+ sacc,T2,300,0.0,28.3849129594
845
+ sacc,T2,300,3.2,33.2817337461
846
+ sacc,T2,300,6.4,27.5839793282
847
+ sacc,T2,300,12.8,28.5115303983
848
+ sacc,T2,300,25.6,27.0098039216
849
+ sacc,T2,300,51.2,30.9593023256
data/seaborn/dowjones.csv ADDED
@@ -0,0 +1,650 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Date,Price
2
+ 1914-12-01,55.0
3
+ 1915-01-01,56.55
4
+ 1915-02-01,56.0
5
+ 1915-03-01,58.3
6
+ 1915-04-01,66.45
7
+ 1915-05-01,65.95
8
+ 1915-06-01,68.4
9
+ 1915-07-01,71.85
10
+ 1915-08-01,79.25
11
+ 1915-09-01,85.5
12
+ 1915-10-01,92.35
13
+ 1915-11-01,94.35
14
+ 1915-12-01,97.0
15
+ 1916-01-01,94.7
16
+ 1916-02-01,93.55
17
+ 1916-03-01,93.3
18
+ 1916-04-01,89.75
19
+ 1916-05-01,90.15
20
+ 1916-06-01,90.65
21
+ 1916-07-01,88.45
22
+ 1916-08-01,91.0
23
+ 1916-09-01,97.45
24
+ 1916-10-01,102.1
25
+ 1916-11-01,107.9
26
+ 1916-12-01,98.5
27
+ 1917-01-01,97.15
28
+ 1917-02-01,90.95
29
+ 1917-03-01,94.65
30
+ 1917-04-01,93.9
31
+ 1917-05-01,93.35
32
+ 1917-06-01,96.95
33
+ 1917-07-01,92.9
34
+ 1917-08-01,88.65
35
+ 1917-09-01,83.6
36
+ 1917-10-01,79.05
37
+ 1917-11-01,71.4
38
+ 1917-12-01,70.2
39
+ 1918-01-01,76.6
40
+ 1918-02-01,79.95
41
+ 1918-03-01,78.05
42
+ 1918-04-01,77.65
43
+ 1918-05-01,81.05
44
+ 1918-06-01,80.45
45
+ 1918-07-01,81.85
46
+ 1918-08-01,81.95
47
+ 1918-09-01,82.5
48
+ 1918-10-01,86.25
49
+ 1918-11-01,84.0
50
+ 1918-12-01,82.5
51
+ 1919-01-01,81.65
52
+ 1919-02-01,82.45
53
+ 1919-03-01,86.55
54
+ 1919-04-01,91.15
55
+ 1919-05-01,99.4
56
+ 1919-06-01,103.6
57
+ 1919-07-01,109.7
58
+ 1919-08-01,103.25
59
+ 1919-09-01,108.2
60
+ 1919-10-01,113.9
61
+ 1919-11-01,111.6
62
+ 1919-12-01,105.8
63
+ 1920-01-01,105.9
64
+ 1920-02-01,96.5
65
+ 1920-03-01,97.95
66
+ 1920-04-01,99.45
67
+ 1920-05-01,91.1
68
+ 1920-06-01,91.7
69
+ 1920-07-01,90.7
70
+ 1920-08-01,85.25
71
+ 1920-09-01,86.5
72
+ 1920-10-01,84.85
73
+ 1920-11-01,79.3
74
+ 1920-12-01,72.2
75
+ 1921-01-01,74.75
76
+ 1921-02-01,75.7
77
+ 1921-03-01,75.05
78
+ 1921-04-01,77.0
79
+ 1921-05-01,76.7
80
+ 1921-06-01,69.2
81
+ 1921-07-01,68.6
82
+ 1921-08-01,66.95
83
+ 1921-09-01,69.35
84
+ 1921-10-01,71.7
85
+ 1921-11-01,75.7
86
+ 1921-12-01,79.8
87
+ 1922-01-01,80.6
88
+ 1922-02-01,83.75
89
+ 1922-03-01,87.2
90
+ 1922-04-01,91.3
91
+ 1922-05-01,93.95
92
+ 1922-06-01,93.55
93
+ 1922-07-01,95.0
94
+ 1922-08-01,98.5
95
+ 1922-09-01,99.2
96
+ 1922-10-01,99.75
97
+ 1922-11-01,95.75
98
+ 1922-12-01,97.0
99
+ 1923-01-01,98.2
100
+ 1923-02-01,100.8
101
+ 1923-03-01,103.9
102
+ 1923-04-01,100.55
103
+ 1923-05-01,95.5
104
+ 1923-06-01,92.55
105
+ 1923-07-01,89.3
106
+ 1923-08-01,90.45
107
+ 1923-09-01,90.75
108
+ 1923-10-01,88.15
109
+ 1923-11-01,90.65
110
+ 1923-12-01,94.1
111
+ 1924-01-01,97.8
112
+ 1924-02-01,98.8
113
+ 1924-03-01,95.6
114
+ 1924-04-01,91.95
115
+ 1924-05-01,90.4
116
+ 1924-06-01,93.3
117
+ 1924-07-01,99.25
118
+ 1924-08-01,103.55
119
+ 1924-09-01,102.9
120
+ 1924-10-01,101.65
121
+ 1924-11-01,107.65
122
+ 1924-12-01,115.45
123
+ 1925-01-01,121.55
124
+ 1925-02-01,120.45
125
+ 1925-03-01,120.35
126
+ 1925-04-01,119.7
127
+ 1925-05-01,125.55
128
+ 1925-06-01,128.9
129
+ 1925-07-01,133.9
130
+ 1925-08-01,138.85
131
+ 1925-09-01,142.45
132
+ 1925-10-01,150.65
133
+ 1925-11-01,153.8
134
+ 1925-12-01,154.55
135
+ 1926-01-01,156.1
136
+ 1926-02-01,158.4
137
+ 1926-03-01,144.25
138
+ 1926-04-01,140.55
139
+ 1926-05-01,140.3
140
+ 1926-06-01,148.15
141
+ 1926-07-01,156.8
142
+ 1926-08-01,163.5
143
+ 1926-09-01,161.2
144
+ 1926-10-01,152.7
145
+ 1926-11-01,153.95
146
+ 1926-12-01,159.3
147
+ 1927-01-01,154.65
148
+ 1927-02-01,158.15
149
+ 1927-03-01,160.1
150
+ 1927-04-01,164.05
151
+ 1927-05-01,168.8
152
+ 1927-06-01,168.85
153
+ 1927-07-01,175.35
154
+ 1927-08-01,183.85
155
+ 1927-09-01,195.3
156
+ 1927-10-01,189.8
157
+ 1927-11-01,189.95
158
+ 1927-12-01,198.0
159
+ 1928-01-01,198.95
160
+ 1928-02-01,195.35
161
+ 1928-03-01,204.5
162
+ 1928-04-01,212.45
163
+ 1928-05-01,216.3
164
+ 1928-06-01,211.5
165
+ 1928-07-01,210.85
166
+ 1928-08-01,227.25
167
+ 1928-09-01,239.3
168
+ 1928-10-01,247.45
169
+ 1928-11-01,274.9
170
+ 1928-12-01,278.65
171
+ 1929-01-01,307.25
172
+ 1929-02-01,309.0
173
+ 1929-03-01,308.85
174
+ 1929-04-01,309.2
175
+ 1929-05-01,310.25
176
+ 1929-06-01,316.45
177
+ 1929-07-01,341.45
178
+ 1929-08-01,359.15
179
+ 1929-09-01,362.35
180
+ 1929-10-01,291.5
181
+ 1929-11-01,228.2
182
+ 1929-12-01,247.2
183
+ 1930-01-01,255.65
184
+ 1930-02-01,267.4
185
+ 1930-03-01,278.25
186
+ 1930-04-01,285.5
187
+ 1930-05-01,266.7
188
+ 1930-06-01,243.15
189
+ 1930-07-01,229.8
190
+ 1930-08-01,228.8
191
+ 1930-09-01,225.0
192
+ 1930-10-01,198.75
193
+ 1930-11-01,180.95
194
+ 1930-12-01,172.15
195
+ 1931-01-01,167.25
196
+ 1931-02-01,181.55
197
+ 1931-03-01,180.05
198
+ 1931-04-01,158.0
199
+ 1931-05-01,141.45
200
+ 1931-06-01,139.3
201
+ 1931-07-01,145.35
202
+ 1931-08-01,139.8
203
+ 1931-09-01,118.35
204
+ 1931-10-01,98.1
205
+ 1931-11-01,103.4
206
+ 1931-12-01,82.8
207
+ 1932-01-01,78.55
208
+ 1932-02-01,78.9
209
+ 1932-03-01,81.05
210
+ 1932-04-01,64.05
211
+ 1932-05-01,51.85
212
+ 1932-06-01,46.85
213
+ 1932-07-01,47.75
214
+ 1932-08-01,64.4
215
+ 1932-09-01,71.0
216
+ 1932-10-01,65.3
217
+ 1932-11-01,62.2
218
+ 1932-12-01,58.85
219
+ 1933-01-01,61.85
220
+ 1933-02-01,55.15
221
+ 1933-03-01,57.75
222
+ 1933-04-01,66.7
223
+ 1933-05-01,83.3
224
+ 1933-06-01,93.8
225
+ 1933-07-01,98.55
226
+ 1933-08-01,98.85
227
+ 1933-09-01,99.45
228
+ 1933-10-01,91.65
229
+ 1933-11-01,95.45
230
+ 1933-12-01,99.05
231
+ 1934-01-01,102.85
232
+ 1934-02-01,106.9
233
+ 1934-03-01,102.3
234
+ 1934-04-01,103.55
235
+ 1934-05-01,96.2
236
+ 1934-06-01,95.9
237
+ 1934-07-01,92.25
238
+ 1934-08-01,91.6
239
+ 1934-09-01,90.2
240
+ 1934-10-01,93.0
241
+ 1934-11-01,98.3
242
+ 1934-12-01,101.8
243
+ 1935-01-01,103.2
244
+ 1935-02-01,103.7
245
+ 1935-03-01,100.0
246
+ 1935-04-01,105.45
247
+ 1935-05-01,112.75
248
+ 1935-06-01,115.25
249
+ 1935-07-01,122.65
250
+ 1935-08-01,126.95
251
+ 1935-09-01,130.7
252
+ 1935-10-01,134.8
253
+ 1935-11-01,144.75
254
+ 1935-12-01,141.7
255
+ 1936-01-01,146.3
256
+ 1936-02-01,152.0
257
+ 1936-03-01,154.6
258
+ 1936-04-01,152.85
259
+ 1936-05-01,149.5
260
+ 1936-06-01,155.0
261
+ 1936-07-01,162.25
262
+ 1936-08-01,164.95
263
+ 1936-09-01,167.4
264
+ 1936-10-01,172.95
265
+ 1936-11-01,180.8
266
+ 1936-12-01,179.05
267
+ 1937-01-01,182.3
268
+ 1937-02-01,188.4
269
+ 1937-03-01,187.1
270
+ 1937-04-01,177.65
271
+ 1937-05-01,171.9
272
+ 1937-06-01,170.3
273
+ 1937-07-01,177.85
274
+ 1937-08-01,182.95
275
+ 1937-09-01,160.25
276
+ 1937-10-01,139.9
277
+ 1937-11-01,124.75
278
+ 1937-12-01,124.35
279
+ 1938-01-01,127.25
280
+ 1938-02-01,125.45
281
+ 1938-03-01,114.75
282
+ 1938-04-01,111.0
283
+ 1938-05-01,113.55
284
+ 1938-06-01,122.8
285
+ 1938-07-01,139.75
286
+ 1938-08-01,140.95
287
+ 1938-09-01,136.5
288
+ 1938-10-01,148.65
289
+ 1938-11-01,152.25
290
+ 1938-12-01,151.1
291
+ 1939-01-01,145.65
292
+ 1939-02-01,144.85
293
+ 1939-03-01,142.05
294
+ 1939-04-01,127.1
295
+ 1939-05-01,133.0
296
+ 1939-06-01,135.1
297
+ 1939-07-01,138.2
298
+ 1939-08-01,137.8
299
+ 1939-09-01,144.4
300
+ 1939-10-01,152.55
301
+ 1939-11-01,149.15
302
+ 1939-12-01,148.35
303
+ 1940-01-01,148.75
304
+ 1940-02-01,146.95
305
+ 1940-03-01,147.0
306
+ 1940-04-01,149.05
307
+ 1940-05-01,131.05
308
+ 1940-06-01,117.85
309
+ 1940-07-01,123.55
310
+ 1940-08-01,125.35
311
+ 1940-09-01,131.4
312
+ 1940-10-01,132.75
313
+ 1940-11-01,133.95
314
+ 1940-12-01,130.4
315
+ 1941-01-01,128.85
316
+ 1941-02-01,121.25
317
+ 1941-03-01,122.1
318
+ 1941-04-01,120.1
319
+ 1941-05-01,116.55
320
+ 1941-06-01,120.1
321
+ 1941-07-01,126.5
322
+ 1941-08-01,126.55
323
+ 1941-09-01,127.55
324
+ 1941-10-01,122.35
325
+ 1941-11-01,117.05
326
+ 1941-12-01,111.5
327
+ 1942-01-01,111.55
328
+ 1942-02-01,107.95
329
+ 1942-03-01,103.1
330
+ 1942-04-01,97.7
331
+ 1942-05-01,98.45
332
+ 1942-06-01,103.8
333
+ 1942-07-01,105.8
334
+ 1942-08-01,106.2
335
+ 1942-09-01,107.8
336
+ 1942-10-01,112.5
337
+ 1942-11-01,115.7
338
+ 1942-12-01,117.15
339
+ 1943-01-01,122.42
340
+ 1943-02-01,127.59
341
+ 1943-03-01,132.71
342
+ 1943-04-01,134.06
343
+ 1943-05-01,139.13
344
+ 1943-06-01,141.08
345
+ 1943-07-01,140.88
346
+ 1943-08-01,136.22
347
+ 1943-09-01,139.33
348
+ 1943-10-01,138.36
349
+ 1943-11-01,134.04
350
+ 1943-12-01,133.46
351
+ 1944-01-01,137.28
352
+ 1944-02-01,135.84
353
+ 1944-03-01,138.72
354
+ 1944-04-01,137.06
355
+ 1944-05-01,139.65
356
+ 1944-06-01,145.12
357
+ 1944-07-01,148.04
358
+ 1944-08-01,146.93
359
+ 1944-09-01,145.06
360
+ 1944-10-01,147.38
361
+ 1944-11-01,146.84
362
+ 1944-12-01,149.92
363
+ 1945-01-01,153.6
364
+ 1945-02-01,157.1
365
+ 1945-03-01,156.9
366
+ 1945-04-01,160.22
367
+ 1945-05-01,166.08
368
+ 1945-06-01,166.74
369
+ 1945-07-01,164.0
370
+ 1945-08-01,167.92
371
+ 1945-09-01,177.8
372
+ 1945-10-01,185.06
373
+ 1945-11-01,189.34
374
+ 1945-12-01,192.44
375
+ 1946-01-01,198.12
376
+ 1946-02-01,196.5
377
+ 1946-03-01,194.51
378
+ 1946-04-01,203.75
379
+ 1946-05-01,206.58
380
+ 1946-06-01,206.0
381
+ 1946-07-01,201.39
382
+ 1946-08-01,196.86
383
+ 1946-09-01,173.18
384
+ 1946-10-01,169.53
385
+ 1946-11-01,168.98
386
+ 1946-12-01,172.91
387
+ 1947-01-01,176.2
388
+ 1947-02-01,180.86
389
+ 1947-03-01,177.12
390
+ 1947-04-01,172.07
391
+ 1947-05-01,168.71
392
+ 1947-06-01,172.72
393
+ 1947-07-01,183.36
394
+ 1947-08-01,180.69
395
+ 1947-09-01,177.34
396
+ 1947-10-01,181.7
397
+ 1947-11-01,181.28
398
+ 1947-12-01,178.45
399
+ 1948-01-01,176.11
400
+ 1948-02-01,170.28
401
+ 1948-03-01,171.3
402
+ 1948-04-01,180.55
403
+ 1948-05-01,185.67
404
+ 1948-06-01,190.53
405
+ 1948-07-01,186.41
406
+ 1948-08-01,181.44
407
+ 1948-09-01,180.68
408
+ 1948-10-01,185.03
409
+ 1948-11-01,180.48
410
+ 1948-12-01,175.57
411
+ 1949-01-01,178.28
412
+ 1949-02-01,175.74
413
+ 1949-03-01,176.06
414
+ 1949-04-01,175.2
415
+ 1949-05-01,172.5
416
+ 1949-06-01,164.88
417
+ 1949-07-01,172.27
418
+ 1949-08-01,179.43
419
+ 1949-09-01,180.66
420
+ 1949-10-01,186.17
421
+ 1949-11-01,190.8
422
+ 1949-12-01,196.62
423
+ 1950-01-01,199.79
424
+ 1950-02-01,203.46
425
+ 1950-03-01,206.3
426
+ 1950-04-01,212.67
427
+ 1950-05-01,219.36
428
+ 1950-06-01,221.02
429
+ 1950-07-01,205.3
430
+ 1950-08-01,216.6
431
+ 1950-09-01,223.21
432
+ 1950-10-01,229.32
433
+ 1950-11-01,229.38
434
+ 1950-12-01,229.26
435
+ 1951-01-01,244.45
436
+ 1951-02-01,253.32
437
+ 1951-03-01,249.5
438
+ 1951-04-01,253.36
439
+ 1951-05-01,254.36
440
+ 1951-06-01,249.32
441
+ 1951-07-01,253.6
442
+ 1951-08-01,264.92
443
+ 1951-09-01,273.36
444
+ 1951-10-01,269.73
445
+ 1951-11-01,259.61
446
+ 1951-12-01,266.09
447
+ 1952-01-01,271.71
448
+ 1952-02-01,265.19
449
+ 1952-03-01,264.48
450
+ 1952-04-01,262.55
451
+ 1952-05-01,261.61
452
+ 1952-06-01,268.39
453
+ 1952-07-01,276.04
454
+ 1952-08-01,276.7
455
+ 1952-09-01,272.4
456
+ 1952-10-01,267.77
457
+ 1952-11-01,276.37
458
+ 1952-12-01,285.95
459
+ 1953-01-01,288.44
460
+ 1953-02-01,283.94
461
+ 1953-03-01,286.79
462
+ 1953-04-01,275.28
463
+ 1953-05-01,276.84
464
+ 1953-06-01,266.88
465
+ 1953-07-01,270.32
466
+ 1953-08-01,272.21
467
+ 1953-09-01,261.9
468
+ 1953-10-01,270.73
469
+ 1953-11-01,277.1
470
+ 1953-12-01,281.15
471
+ 1954-01-01,286.64
472
+ 1954-02-01,292.13
473
+ 1954-03-01,299.15
474
+ 1954-04-01,310.92
475
+ 1954-05-01,322.86
476
+ 1954-06-01,327.91
477
+ 1954-07-01,341.27
478
+ 1954-08-01,346.06
479
+ 1954-09-01,352.71
480
+ 1954-10-01,358.29
481
+ 1954-11-01,375.75
482
+ 1954-12-01,393.84
483
+ 1955-01-01,398.43
484
+ 1955-02-01,410.25
485
+ 1955-03-01,408.91
486
+ 1955-04-01,422.99
487
+ 1955-05-01,421.55
488
+ 1955-06-01,440.79
489
+ 1955-07-01,462.16
490
+ 1955-08-01,457.29
491
+ 1955-09-01,476.43
492
+ 1955-10-01,452.65
493
+ 1955-11-01,476.58
494
+ 1955-12-01,484.58
495
+ 1956-01-01,474.75
496
+ 1956-02-01,475.52
497
+ 1956-03-01,502.67
498
+ 1956-04-01,511.04
499
+ 1956-05-01,495.2
500
+ 1956-06-01,485.33
501
+ 1956-07-01,509.76
502
+ 1956-08-01,511.69
503
+ 1956-09-01,495.01
504
+ 1956-10-01,483.8
505
+ 1956-11-01,479.34
506
+ 1956-12-01,492.01
507
+ 1957-01-01,485.9
508
+ 1957-02-01,466.84
509
+ 1957-03-01,472.78
510
+ 1957-04-01,485.42
511
+ 1957-05-01,500.83
512
+ 1957-06-01,505.27
513
+ 1957-07-01,514.64
514
+ 1957-08-01,487.97
515
+ 1957-09-01,471.79
516
+ 1957-10-01,443.38
517
+ 1957-11-01,436.73
518
+ 1957-12-01,436.94
519
+ 1958-01-01,445.68
520
+ 1958-02-01,444.16
521
+ 1958-03-01,450.14
522
+ 1958-04-01,446.9
523
+ 1958-05-01,460.04
524
+ 1958-06-01,471.97
525
+ 1958-07-01,488.27
526
+ 1958-08-01,507.55
527
+ 1958-09-01,521.82
528
+ 1958-10-01,539.85
529
+ 1958-11-01,557.1
530
+ 1958-12-01,566.43
531
+ 1959-01-01,592.29
532
+ 1959-02-01,590.72
533
+ 1959-03-01,609.12
534
+ 1959-04-01,616.99
535
+ 1959-05-01,630.8
536
+ 1959-06-01,631.51
537
+ 1959-07-01,662.81
538
+ 1959-08-01,660.58
539
+ 1959-09-01,635.47
540
+ 1959-10-01,637.34
541
+ 1959-11-01,646.43
542
+ 1959-12-01,671.35
543
+ 1960-01-01,665.39
544
+ 1960-02-01,624.88
545
+ 1960-03-01,614.7
546
+ 1960-04-01,619.98
547
+ 1960-05-01,615.64
548
+ 1960-06-01,644.38
549
+ 1960-07-01,625.83
550
+ 1960-08-01,624.47
551
+ 1960-09-01,598.1
552
+ 1960-10-01,582.45
553
+ 1960-11-01,601.14
554
+ 1960-12-01,609.54
555
+ 1961-01-01,632.2
556
+ 1961-02-01,650.01
557
+ 1961-03-01,670.56
558
+ 1961-04-01,684.9
559
+ 1961-05-01,693.03
560
+ 1961-06-01,691.44
561
+ 1961-07-01,690.66
562
+ 1961-08-01,718.64
563
+ 1961-09-01,711.02
564
+ 1961-10-01,703.01
565
+ 1961-11-01,724.74
566
+ 1961-12-01,728.44
567
+ 1962-01-01,705.16
568
+ 1962-02-01,711.95
569
+ 1962-03-01,714.21
570
+ 1962-04-01,690.28
571
+ 1962-05-01,643.71
572
+ 1962-06-01,572.64
573
+ 1962-07-01,581.78
574
+ 1962-08-01,602.51
575
+ 1962-09-01,597.02
576
+ 1962-10-01,580.65
577
+ 1962-11-01,628.82
578
+ 1962-12-01,648.38
579
+ 1963-01-01,672.1
580
+ 1963-02-01,679.75
581
+ 1963-03-01,674.63
582
+ 1963-04-01,707.12
583
+ 1963-05-01,720.84
584
+ 1963-06-01,719.14
585
+ 1963-07-01,700.75
586
+ 1963-08-01,714.15
587
+ 1963-09-01,738.52
588
+ 1963-10-01,747.52
589
+ 1963-11-01,743.24
590
+ 1963-12-01,759.94
591
+ 1964-01-01,776.62
592
+ 1964-02-01,793.03
593
+ 1964-03-01,812.18
594
+ 1964-04-01,820.94
595
+ 1964-05-01,823.12
596
+ 1964-06-01,817.63
597
+ 1964-07-01,844.24
598
+ 1964-08-01,835.3
599
+ 1964-09-01,863.55
600
+ 1964-10-01,875.26
601
+ 1964-11-01,880.04
602
+ 1964-12-01,866.73
603
+ 1965-01-01,889.89
604
+ 1965-02-01,894.41
605
+ 1965-03-01,896.44
606
+ 1965-04-01,907.71
607
+ 1965-05-01,927.5
608
+ 1965-06-01,878.06
609
+ 1965-07-01,873.43
610
+ 1965-08-01,887.7
611
+ 1965-09-01,922.18
612
+ 1965-10-01,944.77
613
+ 1965-11-01,953.31
614
+ 1965-12-01,955.19
615
+ 1966-01-01,985.93
616
+ 1966-02-01,977.15
617
+ 1966-03-01,926.43
618
+ 1966-04-01,943.7
619
+ 1966-05-01,890.7
620
+ 1966-06-01,888.73
621
+ 1966-07-01,875.87
622
+ 1966-08-01,817.55
623
+ 1966-09-01,791.65
624
+ 1966-10-01,778.1
625
+ 1966-11-01,806.55
626
+ 1966-12-01,800.86
627
+ 1967-01-01,830.56
628
+ 1967-02-01,851.12
629
+ 1967-03-01,858.11
630
+ 1967-04-01,868.66
631
+ 1967-05-01,883.74
632
+ 1967-06-01,872.66
633
+ 1967-07-01,888.51
634
+ 1967-08-01,912.46
635
+ 1967-09-01,923.45
636
+ 1967-10-01,907.54
637
+ 1967-11-01,865.43
638
+ 1967-12-01,887.2
639
+ 1968-01-01,884.77
640
+ 1968-02-01,847.2
641
+ 1968-03-01,834.76
642
+ 1968-04-01,893.37
643
+ 1968-05-01,905.22
644
+ 1968-06-01,906.82
645
+ 1968-07-01,905.32
646
+ 1968-08-01,883.72
647
+ 1968-09-01,922.8
648
+ 1968-10-01,955.47
649
+ 1968-11-01,964.12
650
+ 1968-12-01,965.39
data/seaborn/exercise.csv ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ,id,diet,pulse,time,kind
2
+ 0,1,low fat,85,1 min,rest
3
+ 1,1,low fat,85,15 min,rest
4
+ 2,1,low fat,88,30 min,rest
5
+ 3,2,low fat,90,1 min,rest
6
+ 4,2,low fat,92,15 min,rest
7
+ 5,2,low fat,93,30 min,rest
8
+ 6,3,low fat,97,1 min,rest
9
+ 7,3,low fat,97,15 min,rest
10
+ 8,3,low fat,94,30 min,rest
11
+ 9,4,low fat,80,1 min,rest
12
+ 10,4,low fat,82,15 min,rest
13
+ 11,4,low fat,83,30 min,rest
14
+ 12,5,low fat,91,1 min,rest
15
+ 13,5,low fat,92,15 min,rest
16
+ 14,5,low fat,91,30 min,rest
17
+ 15,6,no fat,83,1 min,rest
18
+ 16,6,no fat,83,15 min,rest
19
+ 17,6,no fat,84,30 min,rest
20
+ 18,7,no fat,87,1 min,rest
21
+ 19,7,no fat,88,15 min,rest
22
+ 20,7,no fat,90,30 min,rest
23
+ 21,8,no fat,92,1 min,rest
24
+ 22,8,no fat,94,15 min,rest
25
+ 23,8,no fat,95,30 min,rest
26
+ 24,9,no fat,97,1 min,rest
27
+ 25,9,no fat,99,15 min,rest
28
+ 26,9,no fat,96,30 min,rest
29
+ 27,10,no fat,100,1 min,rest
30
+ 28,10,no fat,97,15 min,rest
31
+ 29,10,no fat,100,30 min,rest
32
+ 30,11,low fat,86,1 min,walking
33
+ 31,11,low fat,86,15 min,walking
34
+ 32,11,low fat,84,30 min,walking
35
+ 33,12,low fat,93,1 min,walking
36
+ 34,12,low fat,103,15 min,walking
37
+ 35,12,low fat,104,30 min,walking
38
+ 36,13,low fat,90,1 min,walking
39
+ 37,13,low fat,92,15 min,walking
40
+ 38,13,low fat,93,30 min,walking
41
+ 39,14,low fat,95,1 min,walking
42
+ 40,14,low fat,96,15 min,walking
43
+ 41,14,low fat,100,30 min,walking
44
+ 42,15,low fat,89,1 min,walking
45
+ 43,15,low fat,96,15 min,walking
46
+ 44,15,low fat,95,30 min,walking
47
+ 45,16,no fat,84,1 min,walking
48
+ 46,16,no fat,86,15 min,walking
49
+ 47,16,no fat,89,30 min,walking
50
+ 48,17,no fat,103,1 min,walking
51
+ 49,17,no fat,109,15 min,walking
52
+ 50,17,no fat,90,30 min,walking
53
+ 51,18,no fat,92,1 min,walking
54
+ 52,18,no fat,96,15 min,walking
55
+ 53,18,no fat,101,30 min,walking
56
+ 54,19,no fat,97,1 min,walking
57
+ 55,19,no fat,98,15 min,walking
58
+ 56,19,no fat,100,30 min,walking
59
+ 57,20,no fat,102,1 min,walking
60
+ 58,20,no fat,104,15 min,walking
61
+ 59,20,no fat,103,30 min,walking
62
+ 60,21,low fat,93,1 min,running
63
+ 61,21,low fat,98,15 min,running
64
+ 62,21,low fat,110,30 min,running
65
+ 63,22,low fat,98,1 min,running
66
+ 64,22,low fat,104,15 min,running
67
+ 65,22,low fat,112,30 min,running
68
+ 66,23,low fat,98,1 min,running
69
+ 67,23,low fat,105,15 min,running
70
+ 68,23,low fat,99,30 min,running
71
+ 69,24,low fat,87,1 min,running
72
+ 70,24,low fat,132,15 min,running
73
+ 71,24,low fat,120,30 min,running
74
+ 72,25,low fat,94,1 min,running
75
+ 73,25,low fat,110,15 min,running
76
+ 74,25,low fat,116,30 min,running
77
+ 75,26,no fat,95,1 min,running
78
+ 76,26,no fat,126,15 min,running
79
+ 77,26,no fat,143,30 min,running
80
+ 78,27,no fat,100,1 min,running
81
+ 79,27,no fat,126,15 min,running
82
+ 80,27,no fat,140,30 min,running
83
+ 81,28,no fat,103,1 min,running
84
+ 82,28,no fat,124,15 min,running
85
+ 83,28,no fat,140,30 min,running
86
+ 84,29,no fat,94,1 min,running
87
+ 85,29,no fat,135,15 min,running
88
+ 86,29,no fat,130,30 min,running
89
+ 87,30,no fat,99,1 min,running
90
+ 88,30,no fat,111,15 min,running
91
+ 89,30,no fat,150,30 min,running
data/seaborn/flights.csv ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ year,month,passengers
2
+ 1949,January,112
3
+ 1949,February,118
4
+ 1949,March,132
5
+ 1949,April,129
6
+ 1949,May,121
7
+ 1949,June,135
8
+ 1949,July,148
9
+ 1949,August,148
10
+ 1949,September,136
11
+ 1949,October,119
12
+ 1949,November,104
13
+ 1949,December,118
14
+ 1950,January,115
15
+ 1950,February,126
16
+ 1950,March,141
17
+ 1950,April,135
18
+ 1950,May,125
19
+ 1950,June,149
20
+ 1950,July,170
21
+ 1950,August,170
22
+ 1950,September,158
23
+ 1950,October,133
24
+ 1950,November,114
25
+ 1950,December,140
26
+ 1951,January,145
27
+ 1951,February,150
28
+ 1951,March,178
29
+ 1951,April,163
30
+ 1951,May,172
31
+ 1951,June,178
32
+ 1951,July,199
33
+ 1951,August,199
34
+ 1951,September,184
35
+ 1951,October,162
36
+ 1951,November,146
37
+ 1951,December,166
38
+ 1952,January,171
39
+ 1952,February,180
40
+ 1952,March,193
41
+ 1952,April,181
42
+ 1952,May,183
43
+ 1952,June,218
44
+ 1952,July,230
45
+ 1952,August,242
46
+ 1952,September,209
47
+ 1952,October,191
48
+ 1952,November,172
49
+ 1952,December,194
50
+ 1953,January,196
51
+ 1953,February,196
52
+ 1953,March,236
53
+ 1953,April,235
54
+ 1953,May,229
55
+ 1953,June,243
56
+ 1953,July,264
57
+ 1953,August,272
58
+ 1953,September,237
59
+ 1953,October,211
60
+ 1953,November,180
61
+ 1953,December,201
62
+ 1954,January,204
63
+ 1954,February,188
64
+ 1954,March,235
65
+ 1954,April,227
66
+ 1954,May,234
67
+ 1954,June,264
68
+ 1954,July,302
69
+ 1954,August,293
70
+ 1954,September,259
71
+ 1954,October,229
72
+ 1954,November,203
73
+ 1954,December,229
74
+ 1955,January,242
75
+ 1955,February,233
76
+ 1955,March,267
77
+ 1955,April,269
78
+ 1955,May,270
79
+ 1955,June,315
80
+ 1955,July,364
81
+ 1955,August,347
82
+ 1955,September,312
83
+ 1955,October,274
84
+ 1955,November,237
85
+ 1955,December,278
86
+ 1956,January,284
87
+ 1956,February,277
88
+ 1956,March,317
89
+ 1956,April,313
90
+ 1956,May,318
91
+ 1956,June,374
92
+ 1956,July,413
93
+ 1956,August,405
94
+ 1956,September,355
95
+ 1956,October,306
96
+ 1956,November,271
97
+ 1956,December,306
98
+ 1957,January,315
99
+ 1957,February,301
100
+ 1957,March,356
101
+ 1957,April,348
102
+ 1957,May,355
103
+ 1957,June,422
104
+ 1957,July,465
105
+ 1957,August,467
106
+ 1957,September,404
107
+ 1957,October,347
108
+ 1957,November,305
109
+ 1957,December,336
110
+ 1958,January,340
111
+ 1958,February,318
112
+ 1958,March,362
113
+ 1958,April,348
114
+ 1958,May,363
115
+ 1958,June,435
116
+ 1958,July,491
117
+ 1958,August,505
118
+ 1958,September,404
119
+ 1958,October,359
120
+ 1958,November,310
121
+ 1958,December,337
122
+ 1959,January,360
123
+ 1959,February,342
124
+ 1959,March,406
125
+ 1959,April,396
126
+ 1959,May,420
127
+ 1959,June,472
128
+ 1959,July,548
129
+ 1959,August,559
130
+ 1959,September,463
131
+ 1959,October,407
132
+ 1959,November,362
133
+ 1959,December,405
134
+ 1960,January,417
135
+ 1960,February,391
136
+ 1960,March,419
137
+ 1960,April,461
138
+ 1960,May,472
139
+ 1960,June,535
140
+ 1960,July,622
141
+ 1960,August,606
142
+ 1960,September,508
143
+ 1960,October,461
144
+ 1960,November,390
145
+ 1960,December,432
data/seaborn/fmri.csv ADDED
@@ -0,0 +1,1065 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ subject,timepoint,event,region,signal
2
+ s13,18,stim,parietal,-0.017551581538
3
+ s5,14,stim,parietal,-0.0808829319505
4
+ s12,18,stim,parietal,-0.0810330187333
5
+ s11,18,stim,parietal,-0.04613439017519999
6
+ s10,18,stim,parietal,-0.0379702032642
7
+ s9,18,stim,parietal,-0.10351309616
8
+ s8,18,stim,parietal,-0.0644081947232
9
+ s7,18,stim,parietal,-0.0605262017124
10
+ s6,18,stim,parietal,-0.00702856091007
11
+ s5,18,stim,parietal,-0.0405568546157
12
+ s4,18,stim,parietal,-0.048812199946599986
13
+ s3,18,stim,parietal,-0.0471481458275
14
+ s2,18,stim,parietal,-0.08662295949179999
15
+ s1,18,stim,parietal,-0.0466590461638
16
+ s0,18,stim,parietal,-0.0755699759477
17
+ s13,17,stim,parietal,-0.00826462526111
18
+ s12,17,stim,parietal,-0.08851175012250001
19
+ s7,9,stim,parietal,0.058896545297
20
+ s10,17,stim,parietal,-0.016846516627
21
+ s9,17,stim,parietal,-0.12157375579000003
22
+ s8,17,stim,parietal,-0.0762871207962
23
+ s7,17,stim,parietal,-0.0438120213819
24
+ s6,17,stim,parietal,-0.014746389298100003
25
+ s5,17,stim,parietal,-0.0566820608044
26
+ s4,17,stim,parietal,-0.044581900875900006
27
+ s3,17,stim,parietal,-0.0535140677471
28
+ s2,17,stim,parietal,-0.07729240018860001
29
+ s1,17,stim,parietal,-0.0380205789406
30
+ s0,17,stim,parietal,-0.07130038539780001
31
+ s13,16,stim,parietal,-0.00285629387119
32
+ s12,16,stim,parietal,-0.08994336333610001
33
+ s11,16,stim,parietal,-0.04958703583380001
34
+ s10,16,stim,parietal,-0.0135663176316
35
+ s9,16,stim,parietal,-0.131640690822
36
+ s8,16,stim,parietal,-0.0930243109477
37
+ s7,16,stim,parietal,-0.021897157826900004
38
+ s8,9,stim,parietal,0.170226886344
39
+ s5,16,stim,parietal,-0.0641378420404
40
+ s4,16,stim,parietal,-0.047433168385500005
41
+ s3,16,stim,parietal,-0.0710224022162
42
+ s2,16,stim,parietal,-0.06499816929169999
43
+ s1,16,stim,parietal,-0.0613560305246
44
+ s0,16,stim,parietal,-0.0577150668782
45
+ s13,15,stim,parietal,-0.0109714632203
46
+ s12,15,stim,parietal,-0.08069796317139999
47
+ s11,15,stim,parietal,-0.07211219404710001
48
+ s10,15,stim,parietal,-0.0288093048081
49
+ s9,15,stim,parietal,-0.134828403383
50
+ s8,15,stim,parietal,-0.112577596942
51
+ s7,15,stim,parietal,-0.00938312919114
52
+ s6,15,stim,parietal,-0.06872022524669999
53
+ s5,15,stim,parietal,-0.0705615378511
54
+ s4,15,stim,parietal,-0.0560310534918
55
+ s3,15,stim,parietal,-0.0907351815282
56
+ s2,15,stim,parietal,-0.0554618569331
57
+ s1,15,stim,parietal,-0.110742321796
58
+ s0,15,stim,parietal,-0.053078664772300006
59
+ s13,14,stim,parietal,-0.0337133890149
60
+ s12,14,stim,parietal,-0.0682973367158
61
+ s11,14,stim,parietal,-0.114468830404
62
+ s10,14,stim,parietal,-0.0522877238724
63
+ s9,14,stim,parietal,-0.1302665983
64
+ s8,14,stim,parietal,-0.128447530062
65
+ s7,14,stim,parietal,-0.0151398384821
66
+ s6,14,stim,parietal,-0.0988446335535
67
+ s11,17,stim,parietal,-0.041960488856
68
+ s4,14,stim,parietal,-0.0639904071723
69
+ s0,0,stim,frontal,-0.0214524594615
70
+ s3,14,stim,parietal,-0.110040787828
71
+ s1,14,stim,parietal,-0.169311681158
72
+ s0,14,stim,parietal,-0.0524187515342
73
+ s13,13,stim,parietal,-0.0686374735514
74
+ s12,13,stim,parietal,-0.056306337975
75
+ s11,13,stim,parietal,-0.157834186994
76
+ s10,13,stim,parietal,-0.0738923487842
77
+ s9,13,stim,parietal,-0.119383455482
78
+ s8,13,stim,parietal,-0.1239496932
79
+ s7,13,stim,parietal,-0.030026322192
80
+ s6,13,stim,parietal,-0.133170667646
81
+ s5,13,stim,parietal,-0.0949707046582
82
+ s4,13,stim,parietal,-0.0747598671492
83
+ s3,13,stim,parietal,-0.1165517168
84
+ s2,13,stim,parietal,-0.0526557373357
85
+ s1,13,stim,parietal,-0.224351323052
86
+ s1,0,stim,parietal,-0.064454004861
87
+ s13,12,stim,parietal,-0.100984175249
88
+ s12,12,stim,parietal,-0.0522953046329
89
+ s11,12,stim,parietal,-0.178509701862
90
+ s10,12,stim,parietal,-0.08723241384569999
91
+ s9,12,stim,parietal,-0.0977889956938
92
+ s8,12,stim,parietal,-0.0925108486782
93
+ s7,12,stim,parietal,-0.0403852425182
94
+ s6,12,stim,parietal,-0.150693428305
95
+ s5,12,stim,parietal,-0.11049636909000002
96
+ s4,12,stim,parietal,-0.0900360515443
97
+ s3,12,stim,parietal,-0.0913009509384
98
+ s2,12,stim,parietal,-0.056376647172
99
+ s1,12,stim,parietal,-0.25548585958000003
100
+ s0,12,stim,parietal,-0.0529114831434
101
+ s13,11,stim,parietal,-0.11257541213
102
+ s12,11,stim,parietal,-0.05662844770740001
103
+ s11,11,stim,parietal,-0.150709342539
104
+ s10,11,stim,parietal,-0.0780802842964
105
+ s9,11,stim,parietal,-0.072241225574
106
+ s8,11,stim,parietal,-0.0280246228922
107
+ s7,11,stim,parietal,-0.030991180776400007
108
+ s6,11,stim,parietal,-0.134795422743
109
+ s5,11,stim,parietal,-0.120694930753
110
+ s4,11,stim,parietal,-0.12854654313
111
+ s3,11,stim,parietal,-0.023273732815200003
112
+ s2,11,stim,parietal,-0.0734168172716
113
+ s1,11,stim,parietal,-0.238473764277
114
+ s0,11,stim,parietal,-0.0514694724514
115
+ s13,10,stim,parietal,-0.0745026100443
116
+ s12,10,stim,parietal,-0.0669700192247
117
+ s11,10,stim,parietal,-0.072780476678
118
+ s10,10,stim,parietal,-0.0417023096317
119
+ s9,10,stim,parietal,-0.0323796382167
120
+ s8,10,stim,parietal,0.0651975099421
121
+ s7,10,stim,parietal,0.00164849110583
122
+ s6,10,stim,parietal,-0.0754333889525
123
+ s5,10,stim,parietal,-0.114761917544
124
+ s4,10,stim,parietal,-0.15265246158
125
+ s3,10,stim,parietal,0.0892314787638
126
+ s2,10,stim,parietal,-0.0876876805188
127
+ s1,10,stim,parietal,-0.13304099332699998
128
+ s0,10,stim,parietal,-0.047914973015800014
129
+ s13,9,stim,parietal,0.0132453345685
130
+ s12,9,stim,parietal,-0.0623350210256
131
+ s11,9,stim,parietal,0.0454185313729
132
+ s10,9,stim,parietal,0.0310064467776
133
+ s9,9,stim,parietal,0.029052961628
134
+ s2,14,stim,parietal,-0.0528745299501
135
+ s6,9,stim,parietal,0.00901740401094
136
+ s7,3,stim,parietal,0.00954793068239
137
+ s0,7,stim,parietal,0.0743427528433
138
+ s3,9,stim,parietal,0.22171613873000004
139
+ s2,9,stim,parietal,-0.082613396203
140
+ s1,9,stim,parietal,0.057891763880400016
141
+ s0,9,stim,parietal,-0.035586997112500005
142
+ s13,8,stim,parietal,0.130991047051
143
+ s12,8,stim,parietal,-0.0275774798409
144
+ s11,8,stim,parietal,0.169673297351
145
+ s10,8,stim,parietal,0.136290736966
146
+ s9,8,stim,parietal,0.121580532588
147
+ s8,8,stim,parietal,0.263207487992
148
+ s7,8,stim,parietal,0.13317559373
149
+ s6,8,stim,parietal,0.112147204561
150
+ s5,8,stim,parietal,0.006805135398060001
151
+ s4,8,stim,parietal,0.017534785968
152
+ s3,8,stim,parietal,0.337143297554
153
+ s6,2,stim,parietal,-0.0307806076045
154
+ s1,8,stim,parietal,0.29463915742
155
+ s0,8,stim,parietal,0.00510065001767
156
+ s13,7,stim,parietal,0.240747073686
157
+ s12,7,stim,parietal,0.0501726783253
158
+ s11,7,stim,parietal,0.254042321237
159
+ s10,7,stim,parietal,0.245641759705
160
+ s9,7,stim,parietal,0.23823081562
161
+ s8,7,stim,parietal,0.312811033675
162
+ s7,7,stim,parietal,0.198789642958
163
+ s6,7,stim,parietal,0.214479570066
164
+ s5,7,stim,parietal,0.119176862322
165
+ s4,7,stim,parietal,0.220448524592
166
+ s3,7,stim,parietal,0.39046573376
167
+ s2,7,stim,parietal,0.0457436269453
168
+ s1,7,stim,parietal,0.494786865197
169
+ s4,9,stim,parietal,-0.114241981967
170
+ s13,6,stim,parietal,0.291884318776
171
+ s12,5,stim,parietal,0.248138009448
172
+ s2,6,stim,frontal,0.101050432206
173
+ s1,6,stim,parietal,0.564984721448
174
+ s2,6,stim,parietal,0.143436119997
175
+ s3,6,stim,parietal,0.340479918138
176
+ s4,6,stim,parietal,0.405840057028
177
+ s5,6,stim,parietal,0.221492883278
178
+ s12,6,stim,parietal,0.157799926472
179
+ s7,6,stim,parietal,0.218061194469
180
+ s8,6,stim,parietal,0.298009042033
181
+ s9,6,stim,parietal,0.34591807436800004
182
+ s10,6,stim,parietal,0.296960232897
183
+ s11,6,stim,parietal,0.262771101488
184
+ s0,6,stim,parietal,0.143093371757
185
+ s6,6,stim,parietal,0.270955810073
186
+ s13,5,stim,parietal,0.252627264341
187
+ s6,5,stim,parietal,0.239175097834
188
+ s11,5,stim,parietal,0.194215001153
189
+ s10,5,stim,parietal,0.253871308297
190
+ s9,5,stim,parietal,0.381495102897
191
+ s8,5,stim,parietal,0.212854836433
192
+ s7,5,stim,parietal,0.177629510785
193
+ s5,5,stim,parietal,0.260057069236
194
+ s4,5,stim,parietal,0.460896318187
195
+ s3,5,stim,parietal,0.19918833824
196
+ s2,5,stim,parietal,0.209354958128
197
+ s1,5,stim,parietal,0.476055495497
198
+ s0,5,stim,parietal,0.175531697606
199
+ s13,4,stim,parietal,0.136219459793
200
+ s12,4,stim,parietal,0.261283304881
201
+ s2,8,stim,parietal,-0.0374066054162
202
+ s11,4,stim,parietal,0.0871751702674
203
+ s7,2,stim,parietal,-0.0348741834216
204
+ s4,2,stim,parietal,-0.0281087303981
205
+ s8,4,stim,parietal,0.0931813640265
206
+ s7,4,stim,parietal,0.0933092582309
207
+ s6,4,stim,parietal,0.136847472437
208
+ s5,4,stim,parietal,0.208112190773
209
+ s4,4,stim,parietal,0.346774672362
210
+ s3,4,stim,parietal,0.0278785465127
211
+ s2,4,stim,parietal,0.196461030367
212
+ s1,4,stim,parietal,0.287293980823
213
+ s0,4,stim,parietal,0.154057883361
214
+ s13,3,stim,parietal,0.00841751428481
215
+ s12,3,stim,parietal,0.185581486022
216
+ s11,3,stim,parietal,-0.0101379858559
217
+ s10,3,stim,parietal,0.0458383526337
218
+ s9,3,stim,parietal,0.164445987706
219
+ s10,4,stim,parietal,0.143985648987
220
+ s8,3,stim,parietal,-0.00612280734889
221
+ s6,3,stim,parietal,0.0275623648356
222
+ s5,3,stim,parietal,0.0927117312126
223
+ s4,3,stim,parietal,0.141458050647
224
+ s3,3,stim,parietal,-0.08970777078
225
+ s2,3,stim,parietal,0.108915570222
226
+ s1,3,stim,parietal,0.0922207832283
227
+ s0,3,stim,parietal,0.08639892293880001
228
+ s13,2,stim,parietal,-0.06291590684659999
229
+ s12,2,stim,parietal,0.0772772101448
230
+ s11,2,stim,parietal,-0.0590890319945
231
+ s10,2,stim,parietal,0.0117514891824
232
+ s9,2,stim,parietal,0.0406201814079
233
+ s8,2,stim,parietal,-0.0499640186404
234
+ s5,2,stim,parietal,-0.0174990444292
235
+ s3,2,stim,parietal,-0.11056526279
236
+ s9,4,stim,parietal,0.307250437048
237
+ s2,2,stim,parietal,0.00879137477466
238
+ s1,2,stim,parietal,-0.035153391354300005
239
+ s0,2,stim,parietal,0.00964152991767
240
+ s13,1,stim,parietal,-0.0642564530879
241
+ s12,1,stim,parietal,0.010624696534
242
+ s11,1,stim,parietal,-0.0593541448572
243
+ s10,1,stim,parietal,0.0298221982646
244
+ s9,1,stim,parietal,-0.0127649638126
245
+ s8,1,stim,parietal,-0.0495315318358
246
+ s7,1,stim,parietal,-0.0238826223038
247
+ s6,1,stim,parietal,-0.0373259336173
248
+ s5,1,stim,parietal,-0.0639066373872
249
+ s4,1,stim,parietal,-0.08217435804039999
250
+ s3,1,stim,parietal,-0.0614603544278
251
+ s2,1,stim,parietal,-0.0420866174374
252
+ s1,1,stim,parietal,-0.0744017875989
253
+ s0,1,stim,parietal,-0.0357352139038
254
+ s13,0,stim,parietal,-0.0424666030737
255
+ s12,0,stim,parietal,0.00335775487784
256
+ s11,0,stim,parietal,-0.0446339217791
257
+ s10,0,stim,parietal,0.0526185471798
258
+ s9,0,stim,parietal,-0.0183692770271
259
+ s8,0,stim,parietal,-0.0343397320837
260
+ s7,0,stim,parietal,0.00408135609976
261
+ s6,0,stim,parietal,-0.0233191548807
262
+ s5,0,stim,parietal,-0.0512277101955
263
+ s4,0,stim,parietal,-0.048868504750800006
264
+ s3,0,stim,parietal,-0.00857603635283
265
+ s2,0,stim,parietal,-0.0344071864202
266
+ s5,9,stim,parietal,-0.0748428067959
267
+ s0,13,stim,parietal,-0.055263680727699986
268
+ s6,16,stim,parietal,-0.039950784210800006
269
+ s10,4,stim,frontal,0.0300440528842
270
+ s11,4,stim,frontal,0.075957371738
271
+ s3,0,stim,frontal,0.0110564879557
272
+ s4,0,stim,frontal,-0.0175155017738
273
+ s5,0,stim,frontal,-0.0229773510382
274
+ s6,0,stim,frontal,-0.00794660736514
275
+ s7,0,stim,frontal,-0.0208637774128
276
+ s8,0,stim,frontal,0.01885189399
277
+ s9,0,stim,frontal,0.00288790240614
278
+ s10,0,stim,frontal,0.0743989963727
279
+ s11,0,stim,frontal,-0.028422663656
280
+ s12,0,stim,frontal,0.0383924609177
281
+ s13,0,stim,frontal,-0.0382661560354
282
+ s0,1,stim,frontal,-0.0210536291102
283
+ s1,1,stim,frontal,-0.0602726368389
284
+ s2,1,stim,frontal,-0.036432999521
285
+ s3,1,stim,frontal,-0.0102617412665
286
+ s1,0,stim,frontal,-0.0460485902002
287
+ s5,1,stim,frontal,-0.0271789021177
288
+ s6,1,stim,frontal,0.00956665177569
289
+ s7,1,stim,frontal,-0.0235255792331
290
+ s8,1,stim,frontal,-0.00923150443538
291
+ s9,1,stim,frontal,-0.005616425879319999
292
+ s10,1,stim,frontal,0.0635584004637
293
+ s11,1,stim,frontal,-0.0462346147549
294
+ s12,1,stim,frontal,0.0447695772963
295
+ s13,1,stim,frontal,-0.0464925630129
296
+ s0,2,stim,frontal,-0.00903763731098
297
+ s1,2,stim,frontal,-0.0375198109288
298
+ s2,2,stim,frontal,-0.0107439374483
299
+ s3,2,stim,frontal,-0.0573062927735
300
+ s4,2,stim,frontal,-0.022762958962500003
301
+ s5,2,stim,frontal,0.003835642103380001
302
+ s6,2,stim,frontal,0.025363154735
303
+ s7,2,stim,frontal,0.00179510893658
304
+ s8,2,stim,frontal,-0.0425319036155
305
+ s9,2,stim,frontal,-0.0144415260014
306
+ s10,2,stim,frontal,0.0308917221226
307
+ s11,2,stim,frontal,-0.0551536585187
308
+ s12,2,stim,frontal,0.0750666129231
309
+ s13,2,stim,frontal,-0.0242307031151
310
+ s0,3,stim,frontal,0.026726699906
311
+ s1,3,stim,frontal,0.0575983739279
312
+ s2,3,stim,frontal,0.0574609669929
313
+ s3,3,stim,frontal,-0.07521335597249999
314
+ s4,3,stim,frontal,0.120453727716
315
+ s5,3,stim,frontal,0.08662940541549999
316
+ s6,3,stim,frontal,0.0611197845412
317
+ s7,3,stim,frontal,0.0640016003297
318
+ s8,3,stim,frontal,-0.0470322474365
319
+ s9,3,stim,frontal,0.00206339929542
320
+ s10,3,stim,frontal,0.00959870090631
321
+ s11,3,stim,frontal,-0.0149878467224
322
+ s12,3,stim,frontal,0.112746171369
323
+ s13,3,stim,frontal,0.0483176784389
324
+ s0,4,stim,frontal,0.0705575292618
325
+ s1,4,stim,frontal,0.202122689315
326
+ s2,4,stim,frontal,0.128158046374
327
+ s3,4,stim,frontal,-0.00183480915545
328
+ s4,4,stim,frontal,0.324264821523
329
+ s5,4,stim,frontal,0.186011726948
330
+ s6,4,stim,frontal,0.134851244769
331
+ s7,4,stim,frontal,0.133497394423
332
+ s8,4,stim,frontal,-0.0120831656004
333
+ s9,4,stim,frontal,0.040636219985800005
334
+ s4,1,stim,frontal,-0.0505230209634
335
+ s12,4,stim,frontal,0.123049682451
336
+ s9,9,stim,frontal,-0.0965646954787
337
+ s13,4,stim,frontal,0.147685336045
338
+ s1,5,stim,frontal,0.31585962119000005
339
+ s2,5,stim,frontal,0.149879208805
340
+ s3,5,stim,frontal,0.147985329126
341
+ s4,5,stim,frontal,0.455574818936
342
+ s5,5,stim,frontal,0.236025401676
343
+ s6,5,stim,frontal,0.21348405273
344
+ s7,5,stim,frontal,0.17616070682799995
345
+ s8,5,stim,frontal,0.0428114482292
346
+ s9,5,stim,frontal,0.05895263951550001
347
+ s10,5,stim,frontal,0.0727310324172
348
+ s11,5,stim,frontal,0.160734983232
349
+ s12,5,stim,frontal,0.0910269415202
350
+ s13,5,stim,frontal,0.211232397262
351
+ s0,6,stim,frontal,0.059436141935199985
352
+ s1,6,stim,frontal,0.321334601283
353
+ s0,5,stim,frontal,0.0853869967994
354
+ s3,6,stim,frontal,0.28222157970600004
355
+ s4,6,stim,frontal,0.410660972614
356
+ s5,6,stim,frontal,0.196370293043
357
+ s6,6,stim,frontal,0.246783997558
358
+ s7,6,stim,frontal,0.171116812089
359
+ s8,6,stim,frontal,0.08611977472760003
360
+ s9,6,stim,frontal,0.0328062245407
361
+ s10,6,stim,frontal,0.0922449532541
362
+ s11,6,stim,frontal,0.176109444388
363
+ s12,6,stim,frontal,0.0327580046721
364
+ s13,6,stim,frontal,0.195928278229
365
+ s0,7,stim,frontal,0.00799326090472
366
+ s1,7,stim,frontal,0.204943330683
367
+ s2,0,stim,frontal,-0.0169852108573
368
+ s3,7,stim,frontal,0.319009013543
369
+ s4,7,stim,frontal,0.218513616025
370
+ s5,7,stim,frontal,0.08822494738360001
371
+ s6,7,stim,frontal,0.203884103647
372
+ s7,7,stim,frontal,0.12677769874000006
373
+ s8,7,stim,frontal,0.102758652532
374
+ s9,7,stim,frontal,-0.0182161587995
375
+ s10,7,stim,frontal,0.071110215695
376
+ s11,7,stim,frontal,0.100876282424
377
+ s12,7,stim,frontal,-0.0155974400049
378
+ s13,7,stim,frontal,0.114907370649
379
+ s0,8,stim,frontal,-0.0427929064619
380
+ s1,8,stim,frontal,0.0366848710068
381
+ s2,8,stim,frontal,-0.0573023501457
382
+ s3,8,stim,frontal,0.248302107034
383
+ s4,8,stim,frontal,0.0109629220321
384
+ s5,8,stim,frontal,-0.0257432068711
385
+ s6,8,stim,frontal,0.10875302066
386
+ s7,8,stim,frontal,0.0665348868349
387
+ s8,8,stim,frontal,0.0875068441963
388
+ s9,8,stim,frontal,-0.0670740370935
389
+ s10,8,stim,frontal,0.0282991931797
390
+ s11,8,stim,frontal,-0.0173469329493
391
+ s12,8,stim,frontal,-0.0415716689544
392
+ s13,8,stim,frontal,0.013571183970700002
393
+ s0,9,stim,frontal,-0.0701018031155
394
+ s1,9,stim,frontal,-0.0927676486495
395
+ s2,9,stim,frontal,-0.0861001606332
396
+ s3,9,stim,frontal,0.127788732332
397
+ s4,9,stim,frontal,-0.108728887449
398
+ s5,9,stim,frontal,-0.0973762762409
399
+ s6,9,stim,frontal,0.008616637023540001
400
+ s7,9,stim,frontal,0.0121323837445
401
+ s8,9,stim,frontal,0.0468268440164
402
+ s2,7,stim,frontal,0.0147630317538
403
+ s10,9,stim,frontal,-0.00273381445136
404
+ s12,10,stim,frontal,-0.0435940061136
405
+ s12,9,stim,frontal,-0.047257276732
406
+ s13,9,stim,frontal,-0.06805024910730001
407
+ s0,10,stim,frontal,-0.0604329894039
408
+ s1,10,stim,frontal,-0.14330215024
409
+ s2,10,stim,frontal,-0.0759355234177
410
+ s3,10,stim,frontal,0.0125251224024
411
+ s4,10,stim,frontal,-0.132442083726
412
+ s5,10,stim,frontal,-0.118450927525
413
+ s6,10,stim,frontal,-0.0759612307381
414
+ s7,10,stim,frontal,-0.024942025404500003
415
+ s8,10,stim,frontal,-0.00869981640303
416
+ s9,10,stim,frontal,-0.101177843264
417
+ s10,10,stim,frontal,-0.0153564272798
418
+ s11,10,stim,frontal,-0.159771972051
419
+ s13,10,stim,frontal,-0.110284644256
420
+ s6,14,stim,frontal,-0.08851137824510001
421
+ s0,11,stim,frontal,-0.0261040613509
422
+ s1,11,stim,frontal,-0.133646550056
423
+ s2,11,stim,frontal,-0.049446353537
424
+ s3,11,stim,frontal,-0.0675200493551
425
+ s4,11,stim,frontal,-0.107947321225
426
+ s5,11,stim,frontal,-0.103936816793
427
+ s6,11,stim,frontal,-0.138152435253
428
+ s7,11,stim,frontal,-0.0425787763138
429
+ s8,11,stim,frontal,-0.060692043695
430
+ s9,11,stim,frontal,-0.0927582331524
431
+ s10,11,stim,frontal,-0.0201101808428
432
+ s11,11,stim,frontal,-0.15456374771
433
+ s12,11,stim,frontal,-0.0353774985791
434
+ s0,12,stim,frontal,0.00306715009204
435
+ s13,11,stim,frontal,-0.114215411267
436
+ s1,12,stim,frontal,-0.093410707637
437
+ s4,14,stim,frontal,-0.0706921364543
438
+ s2,12,stim,frontal,-0.027012441705900003
439
+ s9,15,stim,frontal,-0.0480074675662
440
+ s4,12,stim,frontal,-0.0804438088945
441
+ s5,12,stim,frontal,-0.07953805172339999
442
+ s6,12,stim,frontal,-0.155545872019
443
+ s7,12,stim,frontal,-0.042475087106300005
444
+ s8,12,stim,frontal,-0.0968252969745
445
+ s9,12,stim,frontal,-0.0836627537109
446
+ s10,12,stim,frontal,-0.019424671253
447
+ s11,12,stim,frontal,-0.115368780071
448
+ s12,12,stim,frontal,-0.032615656200900005
449
+ s13,12,stim,frontal,-0.0900874242966
450
+ s0,13,stim,frontal,0.00332982586024
451
+ s1,13,stim,frontal,-0.0527141572176
452
+ s2,13,stim,frontal,-0.016092268153799997
453
+ s3,13,stim,frontal,-0.107386192502
454
+ s4,13,stim,frontal,-0.0712268148965
455
+ s5,13,stim,frontal,-0.0546139708001
456
+ s6,13,stim,frontal,-0.132768265808
457
+ s7,13,stim,frontal,-0.0261645978151
458
+ s8,13,stim,frontal,-0.109370504289
459
+ s9,13,stim,frontal,-0.07548380610330001
460
+ s10,13,stim,frontal,-0.0137401688662
461
+ s11,13,stim,frontal,-0.0652446872829
462
+ s12,13,stim,frontal,-0.0326627425606
463
+ s13,13,stim,frontal,-0.055233993508
464
+ s0,14,stim,frontal,-0.00269970487539
465
+ s1,14,stim,frontal,-0.0210033263802
466
+ s2,14,stim,frontal,-0.0104289492969
467
+ s3,14,stim,frontal,-0.090362563636
468
+ s5,14,stim,frontal,-0.0376963150522
469
+ s3,12,stim,frontal,-0.103477352397
470
+ s7,14,stim,frontal,-0.000925176693984
471
+ s10,16,stim,frontal,-0.0030570150062900004
472
+ s9,14,stim,frontal,-0.06181713710300001
473
+ s10,14,stim,frontal,-0.0071620233331
474
+ s11,14,stim,frontal,-0.029557810763500007
475
+ s12,14,stim,frontal,-0.0397865885476
476
+ s13,14,stim,frontal,-0.022505925822099995
477
+ s0,15,stim,frontal,-0.0119660179605
478
+ s1,15,stim,frontal,-0.00513411267168
479
+ s2,15,stim,frontal,-0.0138457018672
480
+ s3,15,stim,frontal,-0.063136252215
481
+ s4,15,stim,frontal,-0.07093689687410001
482
+ s5,15,stim,frontal,-0.028026991808700004
483
+ s6,15,stim,frontal,-0.040139364069
484
+ s11,9,stim,frontal,-0.114304263592
485
+ s8,15,stim,frontal,-0.0848246341162
486
+ s10,15,stim,frontal,-0.00411803725385
487
+ s11,15,stim,frontal,-0.016906626259700002
488
+ s12,15,stim,frontal,-0.0496887494108
489
+ s13,15,stim,frontal,-7.56480581685e-05
490
+ s0,16,stim,frontal,-0.0213990846195
491
+ s1,16,stim,frontal,-0.0027187873155
492
+ s2,16,stim,frontal,-0.0306336275507
493
+ s3,16,stim,frontal,-0.0340231130191
494
+ s4,16,stim,frontal,-0.06593923040289999
495
+ s5,16,stim,frontal,-0.0268117820996
496
+ s6,16,stim,frontal,-0.00292560331781
497
+ s7,16,stim,frontal,0.0143006991188
498
+ s8,16,stim,frontal,-0.06450958840490001
499
+ s9,16,stim,frontal,-0.0367394383882
500
+ s0,17,stim,frontal,-0.0393222656115
501
+ s8,14,stim,frontal,-0.102197957935
502
+ s7,15,stim,frontal,0.015163029763
503
+ s11,16,stim,frontal,-0.0207952752934
504
+ s2,18,stim,frontal,-0.058470978469199984
505
+ s12,16,stim,frontal,-0.05946202186430001
506
+ s2,17,stim,frontal,-0.0490784875502
507
+ s3,17,stim,frontal,-0.0144004460979
508
+ s4,17,stim,frontal,-0.0625056570924
509
+ s5,17,stim,frontal,-0.0299207089612
510
+ s6,17,stim,frontal,0.0385751908208
511
+ s7,17,stim,frontal,0.00121181141337
512
+ s8,17,stim,frontal,-0.042657390488300015
513
+ s9,17,stim,frontal,-0.0300992820085
514
+ s11,17,stim,frontal,-0.025345201288
515
+ s12,17,stim,frontal,-0.0601343617828
516
+ s13,17,stim,frontal,0.0234939806648
517
+ s0,18,stim,frontal,-0.0484297385322
518
+ s1,18,stim,frontal,-0.035852428488800006
519
+ s10,17,stim,frontal,-0.00457116262107
520
+ s3,18,stim,frontal,-0.0109204163368
521
+ s9,18,stim,frontal,-0.00995933986682
522
+ s1,17,stim,frontal,-0.015685861010700002
523
+ s0,0,stim,parietal,-0.0393266005945
524
+ s13,18,stim,frontal,0.0244253694066
525
+ s12,18,stim,frontal,-0.0623323445862
526
+ s11,18,stim,frontal,-0.0307844658374
527
+ s10,18,stim,frontal,-0.00892838562082
528
+ s13,16,stim,frontal,0.0140854627305
529
+ s8,18,stim,frontal,-0.0111144370761
530
+ s6,18,stim,frontal,0.0464997185079
531
+ s5,18,stim,frontal,-0.0310125612548
532
+ s4,18,stim,frontal,-0.0632631135055
533
+ s7,18,stim,frontal,-0.019634012602
534
+ s3,4,cue,parietal,0.0582186114962
535
+ s6,5,cue,parietal,0.0381453368558
536
+ s7,5,cue,parietal,-0.00815845041105
537
+ s8,5,cue,parietal,0.0471362245382
538
+ s9,5,cue,parietal,0.055847309598400015
539
+ s10,5,cue,parietal,0.0378916680876
540
+ s0,4,cue,parietal,0.11532113825
541
+ s1,4,cue,parietal,0.14924178269000002
542
+ s12,5,cue,parietal,0.047576637131
543
+ s7,2,cue,parietal,-0.0766085900041
544
+ s8,2,cue,parietal,-0.0215687171672
545
+ s9,2,cue,parietal,-0.00977918768745
546
+ s4,5,cue,parietal,0.186053377099
547
+ s5,5,cue,parietal,0.0286996754562
548
+ s2,4,cue,parietal,0.0484638721715
549
+ s3,5,cue,parietal,0.08890360175169999
550
+ s2,5,cue,parietal,0.00721563801485
551
+ s1,5,cue,parietal,0.215735229271
552
+ s0,5,cue,parietal,0.102043892318
553
+ s13,4,cue,parietal,0.0536918415969
554
+ s12,4,cue,parietal,0.058198039644
555
+ s11,4,cue,parietal,0.00801326082815
556
+ s10,4,cue,parietal,0.0341087612233
557
+ s9,4,cue,parietal,0.06118767496930001
558
+ s8,4,cue,parietal,0.0312011634308
559
+ s7,4,cue,parietal,-0.0463474492093
560
+ s6,4,cue,parietal,0.0222709335503
561
+ s5,4,cue,parietal,0.0515414564243
562
+ s4,4,cue,parietal,0.213117124571
563
+ s11,2,cue,parietal,-0.0548464730976
564
+ s10,2,cue,parietal,-0.0261177119822
565
+ s9,8,cue,parietal,-0.0398411196291
566
+ s12,2,cue,parietal,-0.00948510410683
567
+ s13,5,cue,parietal,0.08102674417780001
568
+ s4,14,cue,frontal,-0.0267960223096
569
+ s8,8,cue,parietal,-0.0234004944386
570
+ s7,8,cue,parietal,0.0183984526248
571
+ s6,8,cue,parietal,-0.056233739376
572
+ s5,8,cue,parietal,-0.0570726138705
573
+ s4,8,cue,parietal,-0.181240908779
574
+ s3,8,cue,parietal,-0.016938743479599998
575
+ s2,8,cue,parietal,-0.0774126485299
576
+ s1,8,cue,parietal,-0.0657555651727
577
+ s0,8,cue,parietal,-0.00273843592227
578
+ s13,7,cue,parietal,0.003324151435
579
+ s12,7,cue,parietal,-0.0103106697503
580
+ s10,7,cue,parietal,-0.039477242766
581
+ s5,14,cue,frontal,-0.0172127890483
582
+ s11,5,cue,parietal,0.0426131300884
583
+ s13,2,cue,parietal,-0.0293295919832
584
+ s13,3,cue,parietal,0.0007478637340930001
585
+ s12,3,cue,parietal,0.0302697426561
586
+ s11,3,cue,parietal,-0.0321585389528
587
+ s10,3,cue,parietal,0.0020683005827400003
588
+ s9,3,cue,parietal,0.0292979500758
589
+ s8,3,cue,parietal,-0.0008228869715830001
590
+ s7,3,cue,parietal,-0.0713861989094
591
+ s6,3,cue,parietal,-0.00929622159607
592
+ s5,3,cue,parietal,0.046518559180300005
593
+ s4,3,cue,parietal,0.129606378289
594
+ s3,3,cue,parietal,0.0147962077845
595
+ s2,3,cue,parietal,0.049428130400800005
596
+ s1,3,cue,parietal,0.0330026478324
597
+ s0,3,cue,parietal,0.08504010878260003
598
+ s9,0,cue,frontal,-0.00811691318458
599
+ s9,6,cue,frontal,0.0268635605066
600
+ s3,14,cue,frontal,-0.030613968525200007
601
+ s8,3,cue,frontal,-0.004987169077270001
602
+ s4,6,cue,frontal,0.0634867092855
603
+ s3,6,cue,frontal,0.0739015779525
604
+ s2,6,cue,frontal,-0.0544052334484
605
+ s1,6,cue,frontal,0.058831446676400015
606
+ s0,6,cue,frontal,0.050775750646000005
607
+ s13,5,cue,frontal,0.0567314714945
608
+ s12,5,cue,frontal,-0.00680544471978
609
+ s11,5,cue,frontal,0.0153010353095
610
+ s10,5,cue,frontal,-0.00896435593861
611
+ s9,5,cue,frontal,0.047047564862
612
+ s8,5,cue,frontal,0.0182597693007
613
+ s7,5,cue,frontal,-0.0179456487935
614
+ s5,5,cue,frontal,0.0358297688961
615
+ s0,7,cue,frontal,0.034597218947800004
616
+ s6,3,cue,frontal,0.00890078602149
617
+ s2,14,cue,frontal,0.0389961768097
618
+ s8,1,cue,frontal,-0.00470193318958
619
+ s7,1,cue,frontal,-0.0452318266602
620
+ s6,1,cue,frontal,0.0140633977838
621
+ s5,1,cue,frontal,-0.0184928851562
622
+ s4,1,cue,frontal,-0.0316738519857
623
+ s3,1,cue,frontal,0.000653061855057
624
+ s2,1,cue,frontal,-0.0105282937271
625
+ s1,1,cue,frontal,-0.0455804699351
626
+ s0,1,cue,frontal,0.0164397984053
627
+ s13,0,cue,frontal,-0.0125760065596
628
+ s12,0,cue,frontal,0.00523904905204
629
+ s11,0,cue,frontal,-0.0500327450639
630
+ s10,0,cue,frontal,-0.0124119927481
631
+ s11,8,cue,parietal,0.005470157629699999
632
+ s5,6,cue,frontal,0.0125509620527
633
+ s6,6,cue,frontal,-0.0214595499705
634
+ s7,6,cue,frontal,-0.00330716756452
635
+ s8,6,cue,frontal,0.0223742016999
636
+ s2,5,cue,frontal,-0.0134180232886
637
+ s1,5,cue,frontal,0.128592379736
638
+ s0,5,cue,frontal,0.06708639987119999
639
+ s13,4,cue,frontal,0.0587040696456
640
+ s12,4,cue,frontal,-0.0004570910724180001
641
+ s11,4,cue,frontal,-0.00453321687892
642
+ s10,4,cue,frontal,-0.0041326642896
643
+ s9,4,cue,frontal,0.0549092195229
644
+ s8,4,cue,frontal,0.00784968399311
645
+ s7,4,cue,frontal,-0.0308180082987
646
+ s6,4,cue,frontal,0.0024072842748800003
647
+ s5,4,cue,frontal,0.0408262184082
648
+ s4,4,cue,frontal,0.204170630974
649
+ s3,4,cue,frontal,0.0534429228294
650
+ s2,4,cue,frontal,0.0132118552959
651
+ s1,4,cue,frontal,0.112545102272
652
+ s0,4,cue,frontal,0.0697752064117
653
+ s13,3,cue,frontal,0.0341351352969
654
+ s12,3,cue,frontal,-0.00215893498758
655
+ s11,3,cue,frontal,-0.0368399595269
656
+ s10,3,cue,frontal,-0.0123926975795
657
+ s3,5,cue,frontal,0.0804468579247
658
+ s9,3,cue,frontal,0.0485983896956
659
+ s4,5,cue,frontal,0.188521242471
660
+ s6,5,cue,frontal,-0.007726105889909999
661
+ s13,6,cue,frontal,0.0224204348758
662
+ s12,6,cue,frontal,-0.00885467067635
663
+ s11,6,cue,frontal,0.00573408069619
664
+ s10,6,cue,frontal,-0.0274808039741
665
+ s10,8,cue,parietal,-0.0661645494002
666
+ s9,14,cue,frontal,0.0105354926644
667
+ s12,8,cue,parietal,-0.0174229360442
668
+ s12,17,cue,frontal,0.00367093318644
669
+ s8,1,cue,parietal,-0.0226751874055
670
+ s7,1,cue,parietal,-0.07413183656280001
671
+ s6,1,cue,parietal,-0.00428350321103
672
+ s5,1,cue,parietal,0.0100858382625
673
+ s4,1,cue,parietal,-0.0374294562033
674
+ s3,1,cue,parietal,-0.0215063507368
675
+ s2,1,cue,parietal,0.00106607278632
676
+ s1,1,cue,parietal,-0.0709318988341
677
+ s0,1,cue,parietal,0.000300322694975
678
+ s13,0,cue,parietal,-0.0183937339494
679
+ s12,0,cue,parietal,-0.0147968933344
680
+ s11,0,cue,parietal,-0.0518957509165
681
+ s10,0,cue,parietal,-0.0314295520884
682
+ s13,17,cue,frontal,-0.00419011651606
683
+ s11,17,cue,frontal,0.0737572737005
684
+ s13,8,cue,parietal,-0.0484351731185
685
+ s10,17,cue,frontal,0.005243757404229999
686
+ s12,15,cue,frontal,-0.00448951009453
687
+ s11,15,cue,frontal,0.0471023070477
688
+ s10,15,cue,frontal,0.0112412835158
689
+ s9,15,cue,frontal,0.0021702084283200004
690
+ s8,15,cue,frontal,0.0253832097515
691
+ s7,15,cue,frontal,-0.027466991959
692
+ s6,15,cue,frontal,0.0100518294106
693
+ s5,15,cue,frontal,-0.0195068625872
694
+ s4,15,cue,frontal,-0.032512333508
695
+ s3,15,cue,frontal,-0.0223767538583
696
+ s2,15,cue,frontal,0.0247336480706
697
+ s1,15,cue,frontal,0.0125941591083
698
+ s0,15,cue,frontal,-0.019636632338
699
+ s9,1,cue,parietal,-0.027914575721400003
700
+ s10,1,cue,parietal,-0.0387324510709
701
+ s11,1,cue,parietal,-0.0589195061288
702
+ s12,1,cue,parietal,-0.0259042246248
703
+ s7,0,cue,frontal,-0.0430214968651
704
+ s5,0,cue,parietal,0.00431520673796
705
+ s4,0,cue,parietal,-0.0459561860199
706
+ s3,0,cue,parietal,-0.0211601500566
707
+ s2,0,cue,parietal,0.00614232810141
708
+ s1,0,cue,parietal,-0.0577055085078
709
+ s1,0,cue,frontal,-0.040937102696
710
+ s13,18,cue,frontal,-0.012163495715
711
+ s12,18,cue,frontal,0.0043837206407100005
712
+ s11,18,cue,frontal,0.0905198558908
713
+ s6,0,cue,parietal,0.0214495567704
714
+ s10,18,cue,frontal,-0.00325075890227
715
+ s8,18,cue,frontal,0.014358246517299996
716
+ s7,18,cue,frontal,-0.0374389826447
717
+ s6,18,cue,frontal,0.0122480941706
718
+ s5,18,cue,frontal,0.0225013307677
719
+ s4,18,cue,frontal,-0.045560288536400005
720
+ s3,18,cue,frontal,-0.0234015787962
721
+ s2,18,cue,frontal,0.0153433794654
722
+ s1,18,cue,frontal,-0.0015336926013900002
723
+ s0,18,cue,frontal,-0.00349674253765
724
+ s9,18,cue,frontal,-0.0006433163982769999
725
+ s7,0,cue,parietal,-0.0635374390609
726
+ s8,0,cue,parietal,-0.015460331531100003
727
+ s9,0,cue,parietal,-0.0289925765556
728
+ s2,2,cue,parietal,0.0195906789676
729
+ s1,2,cue,parietal,-0.0522129347816
730
+ s0,2,cue,parietal,0.033219554326999995
731
+ s13,1,cue,parietal,-0.0251840022699
732
+ s13,14,cue,frontal,-0.00570123521875
733
+ s12,14,cue,frontal,-0.0033179533740100003
734
+ s11,14,cue,frontal,0.0501327381579
735
+ s6,2,cue,parietal,-0.0229244487433
736
+ s6,7,cue,parietal,-0.0198747030483
737
+ s5,7,cue,parietal,-0.0423492412146
738
+ s4,7,cue,parietal,-0.108222328291
739
+ s3,7,cue,parietal,0.0414749599559
740
+ s2,7,cue,parietal,-0.0781117179409
741
+ s1,7,cue,parietal,0.06564442019859999
742
+ s0,7,cue,parietal,0.0253888830341
743
+ s13,6,cue,parietal,0.05722201441319999
744
+ s12,6,cue,parietal,0.0149150459614
745
+ s11,6,cue,parietal,0.05398855650719999
746
+ s10,6,cue,parietal,0.00620823813521
747
+ s9,6,cue,parietal,0.0173086844111
748
+ s8,6,cue,parietal,0.0353399574933
749
+ s7,6,cue,parietal,0.0233853400255
750
+ s6,6,cue,parietal,0.0206494006123
751
+ s5,6,cue,parietal,-0.00909655511476
752
+ s4,6,cue,parietal,0.0493844589057
753
+ s3,6,cue,parietal,0.0849996187345
754
+ s2,6,cue,parietal,-0.0468407445775
755
+ s1,6,cue,parietal,0.181532924007
756
+ s8,7,cue,parietal,0.00526227983545
757
+ s0,6,cue,parietal,0.0637987867698
758
+ s9,7,cue,parietal,-0.0234819381623
759
+ s11,7,cue,parietal,0.0368924318331
760
+ s4,9,cue,parietal,-0.149299267642
761
+ s3,9,cue,parietal,-0.0659350721893
762
+ s2,9,cue,parietal,-0.053902534274000005
763
+ s1,9,cue,parietal,-0.152929131484
764
+ s0,9,cue,parietal,-0.0200436532949
765
+ s7,7,cue,parietal,0.0303745431631
766
+ s5,2,cue,parietal,0.0254025839431
767
+ s10,14,cue,frontal,0.0071673404014099985
768
+ s4,2,cue,parietal,0.0217623536433
769
+ s8,14,cue,frontal,0.021794111017400003
770
+ s7,14,cue,frontal,-0.0198314565368
771
+ s6,14,cue,frontal,-0.0208147703811
772
+ s13,15,cue,frontal,-0.00305348061239
773
+ s3,2,cue,parietal,-0.0138694123002
774
+ s0,16,cue,frontal,-0.0171919266504
775
+ s2,16,cue,frontal,0.0145098643656
776
+ s9,17,cue,frontal,-0.0049004083947
777
+ s8,17,cue,frontal,0.013762123577
778
+ s7,17,cue,frontal,-0.0444741031444
779
+ s6,17,cue,frontal,0.0204153378087
780
+ s5,17,cue,frontal,0.00588373422725
781
+ s4,17,cue,frontal,-0.0447856273504
782
+ s3,17,cue,frontal,-0.0141380828752
783
+ s2,17,cue,frontal,0.0103194050434
784
+ s1,17,cue,frontal,-0.0004387387489750001
785
+ s0,17,cue,frontal,-0.0103752152963
786
+ s13,16,cue,frontal,-0.0025219123314
787
+ s12,16,cue,frontal,-0.00172336864926
788
+ s11,16,cue,frontal,0.057105395789199986
789
+ s10,16,cue,frontal,0.0101631929178
790
+ s9,16,cue,frontal,-0.00428986666204
791
+ s8,16,cue,frontal,0.0163316275274
792
+ s7,16,cue,frontal,-0.0396866842019
793
+ s6,16,cue,frontal,0.031506509003400004
794
+ s5,16,cue,frontal,-0.0100683021535
795
+ s4,16,cue,frontal,-0.0408622819528
796
+ s3,16,cue,frontal,-0.0168074650838
797
+ s1,16,cue,frontal,0.00457908374535
798
+ s8,0,cue,frontal,0.0104169799858
799
+ s7,12,cue,parietal,-0.0201274821868
800
+ s6,0,cue,frontal,0.0186525383098
801
+ s13,17,cue,parietal,-0.017293378635799998
802
+ s12,18,cue,parietal,-0.0114341079411
803
+ s11,18,cue,parietal,0.0431949665488
804
+ s10,18,cue,parietal,-0.043577498564800005
805
+ s9,18,cue,parietal,-0.0510401728011
806
+ s8,18,cue,parietal,-0.0170971882592
807
+ s7,18,cue,parietal,-0.0133806287451
808
+ s6,18,cue,parietal,0.0195316379848
809
+ s5,18,cue,parietal,0.0371607084325
810
+ s4,18,cue,parietal,-0.052735580722400005
811
+ s3,18,cue,parietal,-0.0397100941829
812
+ s2,18,cue,parietal,0.0178053386573
813
+ s1,18,cue,parietal,-0.0263701313418
814
+ s0,18,cue,parietal,-0.0146635254755
815
+ s6,14,cue,parietal,-0.0142616476371
816
+ s11,17,cue,parietal,0.0318670051798
817
+ s13,18,cue,parietal,-0.0208155049959
818
+ s10,17,cue,parietal,-0.0312467589892
819
+ s9,17,cue,parietal,-0.0363623279856
820
+ s8,17,cue,parietal,-0.00591917445721
821
+ s7,17,cue,parietal,-0.0264353200358
822
+ s6,17,cue,parietal,0.0279699301572
823
+ s5,17,cue,parietal,0.025827300027200004
824
+ s4,17,cue,parietal,-0.0373954538034
825
+ s3,17,cue,parietal,-0.0395893913264
826
+ s2,17,cue,parietal,0.0178025751851
827
+ s1,17,cue,parietal,-0.0104811213701
828
+ s0,17,cue,parietal,-0.0258956572719
829
+ s13,16,cue,parietal,-0.00937936303601
830
+ s12,16,cue,parietal,-0.022735163424
831
+ s12,17,cue,parietal,-0.0153776919753
832
+ s7,9,cue,parietal,-0.00015903753670700005
833
+ s11,16,cue,parietal,0.0293067638073
834
+ s10,16,cue,parietal,-0.0169822376089
835
+ s9,16,cue,parietal,-0.0353947901914
836
+ s6,16,cue,parietal,0.0206264477832
837
+ s5,16,cue,parietal,0.0160045120059
838
+ s4,16,cue,parietal,-0.020759130944700003
839
+ s3,16,cue,parietal,-0.0418992949281
840
+ s2,16,cue,parietal,0.0249311031
841
+ s1,16,cue,parietal,-0.00034926938083300004
842
+ s0,16,cue,parietal,-0.026121668593900003
843
+ s13,15,cue,parietal,-0.00138989175368
844
+ s12,15,cue,parietal,-0.0248011314139
845
+ s11,15,cue,parietal,0.0374345270052
846
+ s10,15,cue,parietal,-0.008887011227049999
847
+ s9,15,cue,parietal,-0.0382567607244
848
+ s8,15,cue,parietal,0.0035904133751
849
+ s7,15,cue,parietal,-0.0138385715149
850
+ s6,15,cue,parietal,0.006440906502939999
851
+ s5,15,cue,parietal,0.00788463386574
852
+ s4,15,cue,parietal,-0.0122946946186
853
+ s3,15,cue,parietal,-0.0422532327786
854
+ s2,15,cue,parietal,0.0315954006514
855
+ s1,15,cue,parietal,0.00323779436699
856
+ s0,15,cue,parietal,-0.0256137872876
857
+ s13,14,cue,parietal,-0.00371380944378
858
+ s12,14,cue,parietal,-0.0218242453639
859
+ s11,14,cue,parietal,0.0413420912135
860
+ s10,14,cue,parietal,-0.01076149627
861
+ s9,14,cue,parietal,-0.0343864557897
862
+ s8,14,cue,parietal,-0.007202160882479999
863
+ s7,14,cue,parietal,-0.00865464722562
864
+ s8,16,cue,parietal,0.000848484335915
865
+ s5,14,cue,parietal,0.00481594181701
866
+ s3,14,cue,parietal,-0.0483762564626
867
+ s5,0,cue,frontal,-0.0270327130304
868
+ s2,13,cue,parietal,0.0394762595721
869
+ s13,11,cue,parietal,-0.0506949753525
870
+ s1,14,cue,parietal,-0.0190197680179
871
+ s0,14,cue,parietal,-0.0310804448803
872
+ s13,13,cue,parietal,-0.009111630042
873
+ s12,13,cue,parietal,-0.0201091472848
874
+ s11,13,cue,parietal,0.0281606901408
875
+ s10,13,cue,parietal,-0.021587219240700003
876
+ s9,13,cue,parietal,-0.0169703491926
877
+ s8,13,cue,parietal,-0.0264047266
878
+ s7,13,cue,parietal,-0.0140842106927
879
+ s6,13,cue,parietal,-0.030560872725800006
880
+ s5,13,cue,parietal,-0.00650677088446
881
+ s4,13,cue,parietal,-0.0106126462175
882
+ s3,13,cue,parietal,-0.0637047193938
883
+ s2,14,cue,parietal,0.0358399852165
884
+ s10,11,cue,parietal,-0.0454599782412
885
+ s0,13,cue,parietal,-0.035779817917
886
+ s1,12,cue,parietal,-0.103784572155
887
+ s2,12,cue,parietal,0.0309226741576
888
+ s3,12,cue,parietal,-0.0814599979227
889
+ s4,12,cue,parietal,-0.00709210399119
890
+ s1,13,cue,parietal,-0.0527102127415
891
+ s6,12,cue,parietal,-0.0425893680536
892
+ s5,12,cue,parietal,-0.0220329006251
893
+ s8,12,cue,parietal,-0.0421123872143
894
+ s9,12,cue,parietal,-0.00404433151899
895
+ s10,12,cue,parietal,-0.0309973342255
896
+ s11,12,cue,parietal,-0.00237654002501
897
+ s12,12,cue,parietal,-0.0178295249988
898
+ s13,12,cue,parietal,-0.0257164101976
899
+ s0,12,cue,parietal,-0.036943354135300005
900
+ s12,10,cue,parietal,-0.0179281868977
901
+ s12,11,cue,parietal,-0.0185363979845
902
+ s9,10,cue,parietal,-0.0135379597181
903
+ s9,11,cue,parietal,-0.00414114683393
904
+ s8,11,cue,parietal,-0.0459387027726
905
+ s7,11,cue,parietal,-0.0202657605321
906
+ s6,11,cue,parietal,-0.0516043435149
907
+ s5,11,cue,parietal,-0.0390273863767
908
+ s4,11,cue,parietal,-0.0190119095318
909
+ s3,11,cue,parietal,-0.0942313372239
910
+ s2,11,cue,parietal,0.00913697311649
911
+ s1,11,cue,parietal,-0.14978519266100002
912
+ s0,11,cue,parietal,-0.0390019792127
913
+ s13,10,cue,parietal,-0.0733276094632
914
+ s4,14,cue,parietal,-0.0118680151433
915
+ s11,10,cue,parietal,-0.042917220338
916
+ s11,11,cue,parietal,-0.034447322855300014
917
+ s10,10,cue,parietal,-0.0560472602531
918
+ s8,10,cue,parietal,-0.045905959259199984
919
+ s7,10,cue,parietal,-0.0142832458072
920
+ s6,10,cue,parietal,-0.0637547873885
921
+ s5,10,cue,parietal,-0.049764670767700005
922
+ s4,10,cue,parietal,-0.0689714268396
923
+ s3,10,cue,parietal,-0.0917491496902
924
+ s2,10,cue,parietal,-0.022062221294900004
925
+ s1,10,cue,parietal,-0.17645250841
926
+ s0,10,cue,parietal,-0.032698832431900006
927
+ s13,9,cue,parietal,-0.07507945052069999
928
+ s12,9,cue,parietal,-0.0173973079805
929
+ s11,9,cue,parietal,-0.0267444028202
930
+ s10,9,cue,parietal,-0.0677246043773
931
+ s9,9,cue,parietal,-0.0295463942763
932
+ s7,16,cue,parietal,-0.0245893063994
933
+ s8,9,cue,parietal,-0.039663695843300005
934
+ s0,0,cue,frontal,0.00776611182029
935
+ s3,11,cue,frontal,-0.088991179696
936
+ s3,12,cue,frontal,-0.07071404950839999
937
+ s2,12,cue,frontal,0.0423628697685
938
+ s1,12,cue,frontal,0.0122552469576
939
+ s0,12,cue,frontal,-0.00712513368928
940
+ s13,11,cue,frontal,-0.0403692122031
941
+ s12,11,cue,frontal,-0.006349258059760001
942
+ s11,11,cue,frontal,0.0305283964358
943
+ s10,11,cue,frontal,-0.00150336559644
944
+ s9,11,cue,frontal,0.0203803438083
945
+ s8,11,cue,frontal,-0.014830160753
946
+ s7,11,cue,frontal,-0.0051140807625100005
947
+ s6,11,cue,frontal,-0.0520117791936
948
+ s5,11,cue,frontal,-0.023329026041
949
+ s4,11,cue,frontal,-0.0246927650157
950
+ s2,11,cue,frontal,0.0226803666835
951
+ s6,9,cue,parietal,-0.0692480810464
952
+ s1,11,cue,frontal,-0.0327696443626
953
+ s0,11,cue,frontal,0.00746043079225
954
+ s13,10,cue,frontal,-0.0662865277457
955
+ s12,10,cue,frontal,-0.00935375301823
956
+ s5,12,cue,frontal,-0.0181459403033
957
+ s11,10,cue,frontal,-0.00413791137607
958
+ s6,12,cue,frontal,-0.0436995941144
959
+ s8,12,cue,frontal,-0.007430693052729999
960
+ s1,14,cue,frontal,0.0202417407157
961
+ s0,14,cue,frontal,-0.0240757144387
962
+ s13,13,cue,frontal,-0.00938827240792
963
+ s12,13,cue,frontal,-0.004449969527930001
964
+ s11,13,cue,frontal,0.0595103573341
965
+ s10,13,cue,frontal,0.00439974274153
966
+ s4,12,cue,frontal,-0.016983906673999998
967
+ s3,7,cue,frontal,0.0266682447552
968
+ s1,7,cue,frontal,-0.0538251940234
969
+ s5,9,cue,parietal,-0.0567566311895
970
+ s4,0,cue,frontal,-0.039116488496500006
971
+ s3,0,cue,frontal,-0.000546239981701
972
+ s2,0,cue,frontal,0.00780174578614
973
+ s9,1,cue,frontal,0.00534188564044
974
+ s7,3,cue,frontal,-0.0396855716001
975
+ s10,1,cue,frontal,-0.022527165043700004
976
+ s12,1,cue,frontal,-0.00717138016831
977
+ s5,3,cue,frontal,0.0256926505756
978
+ s4,3,cue,frontal,0.11851503795
979
+ s3,3,cue,frontal,0.0199464936977
980
+ s2,3,cue,frontal,0.00991479192006
981
+ s1,3,cue,frontal,0.0377499519166
982
+ s0,3,cue,frontal,0.0478587888422
983
+ s13,2,cue,frontal,0.00439599259064
984
+ s12,2,cue,frontal,-0.007507127919600002
985
+ s11,2,cue,frontal,-0.0567680902434
986
+ s10,2,cue,frontal,-0.0198766661917
987
+ s9,2,cue,frontal,0.0279644197969
988
+ s8,2,cue,frontal,-0.0124962347482
989
+ s7,2,cue,frontal,-0.043013682712400005
990
+ s6,2,cue,frontal,0.00921076678749
991
+ s5,2,cue,frontal,0.00212052147172
992
+ s4,2,cue,frontal,0.0188497629838
993
+ s3,2,cue,frontal,0.0024528362129800003
994
+ s2,2,cue,frontal,-0.00904849028299
995
+ s1,2,cue,frontal,-0.0270658901671
996
+ s0,2,cue,frontal,0.0242960024654
997
+ s13,1,cue,frontal,-0.010346102320000002
998
+ s11,1,cue,frontal,-0.05881368166
999
+ s9,13,cue,frontal,0.0200739571079
1000
+ s8,13,cue,frontal,0.00841925673815
1001
+ s7,13,cue,frontal,-0.0175130907603
1002
+ s8,7,cue,frontal,0.0190275220282
1003
+ s6,7,cue,frontal,-0.0422953819265
1004
+ s5,7,cue,frontal,-0.014399555076
1005
+ s4,7,cue,frontal,-0.08678567442360001
1006
+ s11,8,cue,frontal,-0.0449253297058
1007
+ s9,10,cue,frontal,0.0104634607701
1008
+ s12,8,cue,frontal,-0.00319476716939
1009
+ s0,9,cue,frontal,0.0100270560903
1010
+ s7,10,cue,frontal,0.0055851620763000005
1011
+ s6,10,cue,frontal,-0.0642260670844
1012
+ s5,10,cue,frontal,-0.0255391841237
1013
+ s4,10,cue,frontal,-0.0665928664573
1014
+ s3,10,cue,frontal,-0.0932567846039
1015
+ s2,10,cue,frontal,-0.00377066682741
1016
+ s1,10,cue,frontal,-0.0979839589249
1017
+ s0,10,cue,frontal,0.0109838741313
1018
+ s13,9,cue,frontal,-0.08295484081480001
1019
+ s12,9,cue,frontal,-0.007656073596260002
1020
+ s11,9,cue,frontal,-0.036139696051500005
1021
+ s10,9,cue,frontal,-0.0393027138944
1022
+ s9,9,cue,frontal,-0.00313320233461
1023
+ s8,9,cue,frontal,-0.00573536473473
1024
+ s7,9,cue,frontal,0.014398518726
1025
+ s6,9,cue,frontal,-0.07089808257689999
1026
+ s5,9,cue,frontal,-0.0288370652557
1027
+ s4,9,cue,frontal,-0.136591741754
1028
+ s3,9,cue,frontal,-0.0775334474769
1029
+ s2,9,cue,frontal,-0.037688644057
1030
+ s1,9,cue,frontal,-0.14604799449300002
1031
+ s13,8,cue,frontal,-0.0709909206509
1032
+ s7,7,cue,frontal,0.008843981048030001
1033
+ s9,7,cue,frontal,0.0036425919011
1034
+ s6,13,cue,frontal,-0.0376522604288
1035
+ s10,7,cue,frontal,-0.0470836486117
1036
+ s5,13,cue,frontal,-0.014984725195899997
1037
+ s4,13,cue,frontal,-0.0215142189251
1038
+ s3,13,cue,frontal,-0.0476390505751
1039
+ s2,13,cue,frontal,0.0479183348854
1040
+ s1,13,cue,frontal,0.0283786550184
1041
+ s0,13,cue,frontal,-0.0217289851851
1042
+ s13,12,cue,frontal,-0.0206860781516
1043
+ s12,12,cue,frontal,-0.00303419038518
1044
+ s11,12,cue,frontal,0.0557662167698
1045
+ s10,12,cue,frontal,0.00571118118196
1046
+ s9,12,cue,frontal,0.0242915167749
1047
+ s7,12,cue,frontal,-0.0140053394853
1048
+ s2,7,cue,frontal,-0.0783632202795
1049
+ s10,10,cue,frontal,-0.0161241042357
1050
+ s8,10,cue,frontal,-0.0151405187963
1051
+ s10,8,cue,frontal,-0.0525045392834
1052
+ s9,8,cue,frontal,-0.008728632014290002
1053
+ s8,8,cue,frontal,0.00727779021147
1054
+ s7,8,cue,frontal,0.015765089874
1055
+ s6,8,cue,frontal,-0.0639606670951
1056
+ s5,8,cue,frontal,-0.0282917476443
1057
+ s4,8,cue,frontal,-0.160820708077
1058
+ s3,8,cue,frontal,-0.0338482069836
1059
+ s2,8,cue,frontal,-0.0696658068792
1060
+ s1,8,cue,frontal,-0.136059024168
1061
+ s0,8,cue,frontal,0.0181654208514
1062
+ s13,7,cue,frontal,-0.0291302997811
1063
+ s12,7,cue,frontal,-0.00493910613621
1064
+ s11,7,cue,frontal,-0.0253667098182
1065
+ s0,0,cue,parietal,-0.00689923478092
data/seaborn/geyser.csv ADDED
@@ -0,0 +1,273 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ duration,waiting,kind
2
+ 3.6,79,long
3
+ 1.8,54,short
4
+ 3.333,74,long
5
+ 2.283,62,short
6
+ 4.533,85,long
7
+ 2.883,55,short
8
+ 4.7,88,long
9
+ 3.6,85,long
10
+ 1.95,51,short
11
+ 4.35,85,long
12
+ 1.8330000000000002,54,short
13
+ 3.917,84,long
14
+ 4.2,78,long
15
+ 1.75,47,short
16
+ 4.7,83,long
17
+ 2.167,52,short
18
+ 1.75,62,short
19
+ 4.8,84,long
20
+ 1.6,52,short
21
+ 4.25,79,long
22
+ 1.8,51,short
23
+ 1.75,47,short
24
+ 3.45,78,long
25
+ 3.0669999999999997,69,long
26
+ 4.533,74,long
27
+ 3.6,83,long
28
+ 1.9669999999999999,55,short
29
+ 4.083,76,long
30
+ 3.85,78,long
31
+ 4.433,79,long
32
+ 4.3,73,long
33
+ 4.467,77,long
34
+ 3.367,66,short
35
+ 4.033,80,long
36
+ 3.833,74,long
37
+ 2.017,52,short
38
+ 1.867,48,short
39
+ 4.833,80,long
40
+ 1.8330000000000002,59,short
41
+ 4.783,90,long
42
+ 4.35,80,long
43
+ 1.883,58,short
44
+ 4.567,84,long
45
+ 1.75,58,short
46
+ 4.533,73,long
47
+ 3.3169999999999997,83,long
48
+ 3.833,64,short
49
+ 2.1,53,short
50
+ 4.633,82,long
51
+ 2.0,59,short
52
+ 4.8,75,long
53
+ 4.716,90,long
54
+ 1.8330000000000002,54,short
55
+ 4.833,80,long
56
+ 1.733,54,short
57
+ 4.883,83,long
58
+ 3.717,71,long
59
+ 1.6669999999999998,64,short
60
+ 4.567,77,long
61
+ 4.317,81,long
62
+ 2.233,59,short
63
+ 4.5,84,long
64
+ 1.75,48,short
65
+ 4.8,82,long
66
+ 1.817,60,short
67
+ 4.4,92,long
68
+ 4.167,78,long
69
+ 4.7,78,long
70
+ 2.0669999999999997,65,short
71
+ 4.7,73,long
72
+ 4.033,82,long
73
+ 1.9669999999999999,56,short
74
+ 4.5,79,long
75
+ 4.0,71,long
76
+ 1.983,62,short
77
+ 5.067,76,long
78
+ 2.017,60,short
79
+ 4.567,78,long
80
+ 3.883,76,long
81
+ 3.6,83,long
82
+ 4.133,75,long
83
+ 4.333,82,long
84
+ 4.1,70,long
85
+ 2.633,65,short
86
+ 4.067,73,long
87
+ 4.933,88,long
88
+ 3.95,76,long
89
+ 4.5169999999999995,80,long
90
+ 2.167,48,short
91
+ 4.0,86,long
92
+ 2.2,60,short
93
+ 4.333,90,long
94
+ 1.867,50,short
95
+ 4.817,78,long
96
+ 1.8330000000000002,63,short
97
+ 4.3,72,long
98
+ 4.667,84,long
99
+ 3.75,75,long
100
+ 1.867,51,short
101
+ 4.9,82,long
102
+ 2.483,62,short
103
+ 4.367,88,long
104
+ 2.1,49,short
105
+ 4.5,83,long
106
+ 4.05,81,long
107
+ 1.867,47,short
108
+ 4.7,84,long
109
+ 1.7830000000000001,52,short
110
+ 4.85,86,long
111
+ 3.6830000000000003,81,long
112
+ 4.7330000000000005,75,long
113
+ 2.3,59,short
114
+ 4.9,89,long
115
+ 4.417,79,long
116
+ 1.7,59,short
117
+ 4.633,81,long
118
+ 2.3169999999999997,50,short
119
+ 4.6,85,long
120
+ 1.817,59,short
121
+ 4.417,87,long
122
+ 2.617,53,short
123
+ 4.067,69,long
124
+ 4.25,77,long
125
+ 1.9669999999999999,56,short
126
+ 4.6,88,long
127
+ 3.767,81,long
128
+ 1.9169999999999998,45,short
129
+ 4.5,82,long
130
+ 2.267,55,short
131
+ 4.65,90,long
132
+ 1.867,45,short
133
+ 4.167,83,long
134
+ 2.8,56,short
135
+ 4.333,89,long
136
+ 1.8330000000000002,46,short
137
+ 4.383,82,long
138
+ 1.883,51,short
139
+ 4.933,86,long
140
+ 2.033,53,short
141
+ 3.733,79,long
142
+ 4.2330000000000005,81,long
143
+ 2.233,60,short
144
+ 4.533,82,long
145
+ 4.817,77,long
146
+ 4.333,76,long
147
+ 1.983,59,short
148
+ 4.633,80,long
149
+ 2.017,49,short
150
+ 5.1,96,long
151
+ 1.8,53,short
152
+ 5.033,77,long
153
+ 4.0,77,long
154
+ 2.4,65,short
155
+ 4.6,81,long
156
+ 3.5669999999999997,71,long
157
+ 4.0,70,long
158
+ 4.5,81,long
159
+ 4.083,93,long
160
+ 1.8,53,short
161
+ 3.967,89,long
162
+ 2.2,45,short
163
+ 4.15,86,long
164
+ 2.0,58,short
165
+ 3.833,78,long
166
+ 3.5,66,short
167
+ 4.583,76,long
168
+ 2.367,63,short
169
+ 5.0,88,long
170
+ 1.933,52,short
171
+ 4.617,93,long
172
+ 1.9169999999999998,49,short
173
+ 2.083,57,short
174
+ 4.583,77,long
175
+ 3.333,68,long
176
+ 4.167,81,long
177
+ 4.333,81,long
178
+ 4.5,73,long
179
+ 2.417,50,short
180
+ 4.0,85,long
181
+ 4.167,74,long
182
+ 1.883,55,short
183
+ 4.583,77,long
184
+ 4.25,83,long
185
+ 3.767,83,long
186
+ 2.033,51,short
187
+ 4.433,78,long
188
+ 4.083,84,long
189
+ 1.8330000000000002,46,short
190
+ 4.417,83,long
191
+ 2.1830000000000003,55,short
192
+ 4.8,81,long
193
+ 1.8330000000000002,57,short
194
+ 4.8,76,long
195
+ 4.1,84,long
196
+ 3.966,77,long
197
+ 4.2330000000000005,81,long
198
+ 3.5,87,long
199
+ 4.3660000000000005,77,long
200
+ 2.25,51,short
201
+ 4.667,78,long
202
+ 2.1,60,short
203
+ 4.35,82,long
204
+ 4.133,91,long
205
+ 1.867,53,short
206
+ 4.6,78,long
207
+ 1.7830000000000001,46,short
208
+ 4.367,77,long
209
+ 3.85,84,long
210
+ 1.933,49,short
211
+ 4.5,83,long
212
+ 2.383,71,long
213
+ 4.7,80,long
214
+ 1.867,49,short
215
+ 3.833,75,long
216
+ 3.417,64,short
217
+ 4.2330000000000005,76,long
218
+ 2.4,53,short
219
+ 4.8,94,long
220
+ 2.0,55,short
221
+ 4.15,76,long
222
+ 1.867,50,short
223
+ 4.2669999999999995,82,long
224
+ 1.75,54,short
225
+ 4.4830000000000005,75,long
226
+ 4.0,78,long
227
+ 4.117,79,long
228
+ 4.083,78,long
229
+ 4.2669999999999995,78,long
230
+ 3.917,70,long
231
+ 4.55,79,long
232
+ 4.083,70,long
233
+ 2.417,54,short
234
+ 4.183,86,long
235
+ 2.217,50,short
236
+ 4.45,90,long
237
+ 1.883,54,short
238
+ 1.85,54,short
239
+ 4.283,77,long
240
+ 3.95,79,long
241
+ 2.333,64,short
242
+ 4.15,75,long
243
+ 2.35,47,short
244
+ 4.933,86,long
245
+ 2.9,63,short
246
+ 4.583,85,long
247
+ 3.833,82,long
248
+ 2.083,57,short
249
+ 4.367,82,long
250
+ 2.133,67,short
251
+ 4.35,74,long
252
+ 2.2,54,short
253
+ 4.45,83,long
254
+ 3.5669999999999997,73,long
255
+ 4.5,73,long
256
+ 4.15,88,long
257
+ 3.8169999999999997,80,long
258
+ 3.917,71,long
259
+ 4.45,83,long
260
+ 2.0,56,short
261
+ 4.283,79,long
262
+ 4.7669999999999995,78,long
263
+ 4.533,84,long
264
+ 1.85,58,short
265
+ 4.25,83,long
266
+ 1.983,43,short
267
+ 2.25,60,short
268
+ 4.75,75,long
269
+ 4.117,81,long
270
+ 2.15,46,short
271
+ 4.417,90,long
272
+ 1.817,46,short
273
+ 4.467,74,long
data/seaborn/glue.csv ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Model,Year,Encoder,Task,Score
2
+ ERNIE,2019,Transformer,CoLA,75.5
3
+ T5,2019,Transformer,CoLA,71.6
4
+ RoBERTa,2019,Transformer,CoLA,67.8
5
+ BERT,2018,Transformer,CoLA,60.5
6
+ BiLSTM+ELMo,2018,LSTM,CoLA,32.1
7
+ BiLSTM+CoVe,2017,LSTM,CoLA,18.5
8
+ BiLSTM+Attn,2017,LSTM,CoLA,18.6
9
+ BiLSTM,2017,LSTM,CoLA,11.6
10
+ ERNIE,2019,Transformer,SST-2,97.8
11
+ T5,2019,Transformer,SST-2,97.5
12
+ RoBERTa,2019,Transformer,SST-2,96.7
13
+ BERT,2018,Transformer,SST-2,94.9
14
+ BiLSTM+ELMo,2018,LSTM,SST-2,89.3
15
+ BiLSTM+CoVe,2017,LSTM,SST-2,81.9
16
+ BiLSTM+Attn,2017,LSTM,SST-2,83.0
17
+ BiLSTM,2017,LSTM,SST-2,82.8
18
+ ERNIE,2019,Transformer,MRPC,93.9
19
+ T5,2019,Transformer,MRPC,92.8
20
+ RoBERTa,2019,Transformer,MRPC,92.3
21
+ BERT,2018,Transformer,MRPC,89.3
22
+ BiLSTM+ELMo,2018,LSTM,MRPC,84.7
23
+ BiLSTM+CoVe,2017,LSTM,MRPC,78.7
24
+ BiLSTM+Attn,2017,LSTM,MRPC,83.9
25
+ BiLSTM,2017,LSTM,MRPC,81.8
26
+ ERNIE,2019,Transformer,STS-B,93.0
27
+ T5,2019,Transformer,STS-B,93.1
28
+ RoBERTa,2019,Transformer,STS-B,92.2
29
+ BERT,2018,Transformer,STS-B,87.6
30
+ BiLSTM+ELMo,2018,LSTM,STS-B,70.3
31
+ BiLSTM+CoVe,2017,LSTM,STS-B,64.4
32
+ BiLSTM+Attn,2017,LSTM,STS-B,72.8
33
+ BiLSTM,2017,LSTM,STS-B,70.3
34
+ ERNIE,2019,Transformer,QQP,75.2
35
+ T5,2019,Transformer,QQP,75.1
36
+ RoBERTa,2019,Transformer,QQP,74.3
37
+ BERT,2018,Transformer,QQP,72.1
38
+ BiLSTM+ELMo,2018,LSTM,QQP,61.1
39
+ BiLSTM+CoVe,2017,LSTM,QQP,60.6
40
+ BiLSTM+Attn,2017,LSTM,QQP,60.1
41
+ BiLSTM,2017,LSTM,QQP,62.5
42
+ ERNIE,2019,Transformer,MNLI,92.3
43
+ T5,2019,Transformer,MNLI,92.2
44
+ RoBERTa,2019,Transformer,MNLI,90.8
45
+ BERT,2018,Transformer,MNLI,86.7
46
+ BiLSTM+ELMo,2018,LSTM,MNLI,67.2
47
+ BiLSTM+CoVe,2017,LSTM,MNLI,65.4
48
+ BiLSTM+Attn,2017,LSTM,MNLI,67.6
49
+ BiLSTM,2017,LSTM,MNLI,65.6
50
+ ERNIE,2019,Transformer,QNLI,97.3
51
+ T5,2019,Transformer,QNLI,96.9
52
+ RoBERTa,2019,Transformer,QNLI,95.4
53
+ BERT,2018,Transformer,QNLI,92.7
54
+ BiLSTM+ELMo,2018,LSTM,QNLI,75.5
55
+ BiLSTM+CoVe,2017,LSTM,QNLI,70.8
56
+ BiLSTM+Attn,2017,LSTM,QNLI,74.3
57
+ BiLSTM,2017,LSTM,QNLI,74.6
58
+ ERNIE,2019,Transformer,RTE,92.6
59
+ T5,2019,Transformer,RTE,92.8
60
+ RoBERTa,2019,Transformer,RTE,88.2
61
+ BERT,2018,Transformer,RTE,70.1
62
+ BiLSTM+ELMo,2018,LSTM,RTE,57.4
63
+ BiLSTM+CoVe,2017,LSTM,RTE,52.7
64
+ BiLSTM+Attn,2017,LSTM,RTE,58.4
65
+ BiLSTM,2017,LSTM,RTE,57.4
data/seaborn/healthexp.csv ADDED
@@ -0,0 +1,275 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Year,Country,Spending_USD,Life_Expectancy
2
+ 1970,Germany,252.311,70.6
3
+ 1970,France,192.143,72.2
4
+ 1970,Great Britain,123.993,71.9
5
+ 1970,Japan,150.437,72.0
6
+ 1970,USA,326.961,70.9
7
+ 1971,Canada,313.391,72.8
8
+ 1971,Germany,298.251,70.8
9
+ 1971,Great Britain,134.172,71.9
10
+ 1971,Japan,163.854,72.9
11
+ 1971,USA,357.988,71.2
12
+ 1972,Germany,337.364,71.0
13
+ 1972,Japan,185.39,73.2
14
+ 1972,USA,397.097,71.2
15
+ 1973,Germany,384.541,71.3
16
+ 1973,Japan,205.778,73.4
17
+ 1973,USA,439.302,71.4
18
+ 1974,Germany,452.744,71.5
19
+ 1974,Japan,242.018,73.7
20
+ 1974,USA,495.114,72.0
21
+ 1975,Germany,532.481,71.4
22
+ 1975,France,363.61,73.0
23
+ 1975,Japan,284.269,74.3
24
+ 1975,USA,560.75,72.7
25
+ 1976,Canada,543.337,73.8
26
+ 1976,Germany,591.098,71.8
27
+ 1976,Japan,303.725,74.8
28
+ 1976,USA,638.851,72.9
29
+ 1977,Germany,647.352,72.5
30
+ 1977,Japan,340.628,75.3
31
+ 1977,USA,726.241,73.3
32
+ 1978,Germany,729.457,72.4
33
+ 1978,Japan,392.577,75.7
34
+ 1978,USA,808.884,73.5
35
+ 1979,Canada,692.269,75.1
36
+ 1979,Germany,800.703,72.8
37
+ 1979,Japan,452.931,76.2
38
+ 1979,USA,908.963,73.9
39
+ 1980,Canada,791.812,75.2
40
+ 1980,Germany,908.166,72.9
41
+ 1980,France,659.826,74.3
42
+ 1980,Great Britain,385.099,73.2
43
+ 1980,Japan,535.016,76.1
44
+ 1980,USA,1036.3,73.7
45
+ 1981,Canada,898.807,75.5
46
+ 1981,Germany,1014.713,73.2
47
+ 1981,Great Britain,433.957,73.8
48
+ 1981,Japan,603.965,76.5
49
+ 1981,USA,1191.537,74.1
50
+ 1982,Canada,996.086,75.6
51
+ 1982,Germany,1044.528,73.5
52
+ 1982,Great Britain,448.477,74.1
53
+ 1982,Japan,664.777,76.9
54
+ 1982,USA,1329.669,74.5
55
+ 1983,Canada,1066.746,75.9
56
+ 1983,Germany,1104.594,73.8
57
+ 1983,Great Britain,501.924,74.3
58
+ 1983,Japan,714.857,77.0
59
+ 1983,USA,1451.945,74.6
60
+ 1984,Canada,1135.02,76.2
61
+ 1984,Germany,1196.56,74.3
62
+ 1984,Great Britain,521.522,74.5
63
+ 1984,Japan,745.981,77.4
64
+ 1984,USA,1590.667,74.7
65
+ 1985,Canada,1212.85,76.3
66
+ 1985,Germany,1298.555,75.0
67
+ 1985,France,1001.145,75.4
68
+ 1985,Great Britain,549.608,74.7
69
+ 1985,Japan,818.382,77.6
70
+ 1985,USA,1735.156,74.7
71
+ 1986,Canada,1278.816,76.5
72
+ 1986,Germany,1386.51,75.2
73
+ 1986,Great Britain,578.61,74.8
74
+ 1986,Japan,859.855,78.1
75
+ 1986,USA,1847.773,74.7
76
+ 1987,Canada,1357.453,76.7
77
+ 1987,Germany,1480.096,75.6
78
+ 1987,Great Britain,634.956,75.2
79
+ 1987,Japan,916.703,78.5
80
+ 1987,USA,1976.166,74.9
81
+ 1988,Canada,1461.3,76.8
82
+ 1988,Germany,1616.349,75.9
83
+ 1988,Great Britain,688.049,75.3
84
+ 1988,Japan,969.251,78.4
85
+ 1988,USA,2195.392,74.9
86
+ 1989,Canada,1579.543,77.1
87
+ 1989,Germany,1596.16,76.0
88
+ 1989,Great Britain,739.714,75.4
89
+ 1989,Japan,1021.247,78.8
90
+ 1989,USA,2424.654,75.1
91
+ 1990,Canada,1699.774,77.3
92
+ 1990,Germany,1724.332,77.3
93
+ 1990,France,1459.11,77.0
94
+ 1990,Great Britain,782.612,75.7
95
+ 1990,Japan,1088.959,78.9
96
+ 1990,USA,2684.984,75.3
97
+ 1991,Canada,1805.209,77.6
98
+ 1991,France,1558.033,77.2
99
+ 1991,Great Britain,842.797,75.9
100
+ 1991,Japan,1166.43,79.1
101
+ 1991,USA,2901.589,75.5
102
+ 1992,Canada,1897.456,77.8
103
+ 1992,Germany,2019.308,76.1
104
+ 1992,France,1651.139,77.5
105
+ 1992,Great Britain,930.701,76.3
106
+ 1992,Japan,1253.415,79.2
107
+ 1992,USA,3100.343,75.7
108
+ 1993,Canada,1930.889,77.8
109
+ 1993,Germany,2040.313,76.1
110
+ 1993,France,1753.485,77.5
111
+ 1993,Great Britain,995.728,76.2
112
+ 1993,Japan,1332.213,79.4
113
+ 1993,USA,3286.558,75.5
114
+ 1994,Canada,1962.196,77.9
115
+ 1994,Germany,2188.676,76.5
116
+ 1994,France,1817.042,78.0
117
+ 1994,Great Britain,1058.68,76.8
118
+ 1994,Japan,1420.271,79.8
119
+ 1994,USA,3432.101,75.7
120
+ 1995,Canada,1984.944,78.0
121
+ 1995,Germany,2349.145,76.6
122
+ 1995,France,2100.918,78.1
123
+ 1995,Great Britain,1094.034,76.7
124
+ 1995,Japan,1413.445,79.6
125
+ 1995,USA,3586.745,75.7
126
+ 1996,Canada,1999.778,78.2
127
+ 1996,Germany,2480.217,76.9
128
+ 1996,France,2169.451,78.2
129
+ 1996,Great Britain,1171.591,76.9
130
+ 1996,Japan,1436.372,80.3
131
+ 1996,USA,4158.928,76.1
132
+ 1997,Canada,2091.997,78.3
133
+ 1997,Germany,2496.201,77.3
134
+ 1997,France,2236.595,78.6
135
+ 1997,Great Britain,1507.352,77.2
136
+ 1997,Japan,1529.586,80.5
137
+ 1997,USA,3894.282,76.5
138
+ 1998,Canada,2200.468,78.6
139
+ 1998,Germany,2566.003,77.7
140
+ 1998,France,2321.931,78.8
141
+ 1998,Great Britain,1572.097,77.3
142
+ 1998,Japan,1571.107,80.6
143
+ 1998,USA,4061.536,76.7
144
+ 1999,Canada,2278.254,78.8
145
+ 1999,Germany,2697.878,77.9
146
+ 1999,France,2431.303,78.9
147
+ 1999,Great Britain,1683.905,77.5
148
+ 1999,Japan,1667.922,80.5
149
+ 1999,USA,4261.996,76.7
150
+ 2000,Canada,2450.593,79.1
151
+ 2000,Germany,2895.533,78.2
152
+ 2000,France,2687.53,79.2
153
+ 2000,Great Britain,1897.202,77.9
154
+ 2000,Japan,1847.786,81.2
155
+ 2000,USA,4536.561,76.7
156
+ 2001,Canada,2624.293,79.3
157
+ 2001,Germany,3009.368,78.5
158
+ 2001,France,2875.294,79.3
159
+ 2001,Great Britain,2067.167,78.2
160
+ 2001,Japan,1945.556,81.5
161
+ 2001,USA,4888.518,76.9
162
+ 2002,Canada,2758.065,79.5
163
+ 2002,Germany,3239.77,78.5
164
+ 2002,France,3152.016,79.4
165
+ 2002,Great Britain,2287.476,78.3
166
+ 2002,Japan,2065.133,81.8
167
+ 2002,USA,5316.522,77.0
168
+ 2003,Canada,2914.206,79.6
169
+ 2003,Germany,3329.374,78.6
170
+ 2003,France,3056.265,79.3
171
+ 2003,Great Britain,2469.159,78.4
172
+ 2003,Japan,2194.437,81.8
173
+ 2003,USA,5726.538,77.1
174
+ 2004,Canada,3122.396,79.9
175
+ 2004,Germany,3391.521,79.2
176
+ 2004,France,3170.947,80.3
177
+ 2004,Great Britain,2724.869,79.0
178
+ 2004,Japan,2303.68,82.1
179
+ 2004,USA,6069.53,77.6
180
+ 2005,Canada,3291.912,80.0
181
+ 2005,Germany,3429.955,79.4
182
+ 2005,France,3264.574,80.4
183
+ 2005,Great Britain,2731.445,79.2
184
+ 2005,Japan,2471.186,82.0
185
+ 2005,USA,6430.757,77.6
186
+ 2006,Canada,3486.621,80.4
187
+ 2006,Germany,3567.061,79.8
188
+ 2006,France,3444.855,81.0
189
+ 2006,Great Britain,2952.329,79.5
190
+ 2006,Japan,2561.219,82.4
191
+ 2006,USA,6808.054,77.8
192
+ 2007,Canada,3709.615,80.5
193
+ 2007,Germany,3750.787,80.1
194
+ 2007,France,3588.227,81.2
195
+ 2007,Great Britain,3021.671,79.7
196
+ 2007,Japan,2689.916,82.6
197
+ 2007,USA,7166.513,78.1
198
+ 2008,Canada,3849.544,80.7
199
+ 2008,Germany,3955.136,80.2
200
+ 2008,France,3729.353,81.4
201
+ 2008,Great Britain,3207.853,79.8
202
+ 2008,Japan,2799.198,82.7
203
+ 2008,USA,7385.026,78.1
204
+ 2009,Canada,3945.873,80.9
205
+ 2009,Germany,4158.266,80.3
206
+ 2009,France,3880.842,81.5
207
+ 2009,Great Britain,3334.506,80.4
208
+ 2009,Japan,2971.377,83.0
209
+ 2009,USA,7645.002,78.5
210
+ 2010,Canada,4155.529,81.2
211
+ 2010,Germany,4423.07,80.5
212
+ 2010,France,4045.065,81.8
213
+ 2010,Great Britain,3441.71,80.6
214
+ 2010,Japan,3169.19,82.9
215
+ 2010,USA,7879.253,78.6
216
+ 2011,Canada,4228.962,81.4
217
+ 2011,Germany,4566.678,80.5
218
+ 2011,France,4161.698,82.3
219
+ 2011,Great Britain,3495.652,81.0
220
+ 2011,Japan,3740.756,82.7
221
+ 2011,USA,8079.467,78.7
222
+ 2012,Canada,4336.249,81.6
223
+ 2012,Germany,4745.546,80.6
224
+ 2012,France,4299.434,82.1
225
+ 2012,Great Britain,3614.131,81.0
226
+ 2012,Japan,3970.765,83.2
227
+ 2012,USA,8346.064,78.8
228
+ 2013,Canada,4428.753,81.7
229
+ 2013,Germany,4951.677,80.6
230
+ 2013,France,4544.964,82.3
231
+ 2013,Great Britain,3667.636,81.1
232
+ 2013,Japan,4308.252,83.4
233
+ 2013,USA,8519.62,78.8
234
+ 2014,Canada,4536.81,81.8
235
+ 2014,Germany,5151.709,81.2
236
+ 2014,France,4626.679,82.8
237
+ 2014,Great Britain,3758.935,81.4
238
+ 2014,Japan,4328.364,83.7
239
+ 2014,USA,8925.879,78.9
240
+ 2015,Canada,4635.285,81.9
241
+ 2015,Germany,5295.975,80.7
242
+ 2015,France,4667.156,82.4
243
+ 2015,Great Britain,3805.82,81.0
244
+ 2015,Japan,4515.556,83.9
245
+ 2015,USA,9355.118,78.7
246
+ 2016,Canada,5044.275,82.0
247
+ 2016,Germany,5669.064,81.0
248
+ 2016,France,4928.128,82.7
249
+ 2016,Great Britain,3960.141,81.2
250
+ 2016,Japan,4295.858,84.1
251
+ 2016,USA,9717.649,78.7
252
+ 2017,Canada,5150.47,81.9
253
+ 2017,Germany,5970.163,81.1
254
+ 2017,France,5005.756,82.7
255
+ 2017,Great Britain,4059.125,81.3
256
+ 2017,Japan,4412.852,84.2
257
+ 2017,USA,10046.472,78.6
258
+ 2018,Canada,5308.356,82.0
259
+ 2018,Germany,6281.84,81.0
260
+ 2018,France,5099.306,82.8
261
+ 2018,Great Britain,4189.708,81.3
262
+ 2018,Japan,4554.276,84.3
263
+ 2018,USA,10451.386,78.7
264
+ 2019,Canada,5189.721,82.2
265
+ 2019,Germany,6407.928,81.3
266
+ 2019,France,5167.839,82.9
267
+ 2019,Great Britain,4385.463,81.4
268
+ 2019,Japan,4610.794,84.4
269
+ 2019,USA,10855.517,78.8
270
+ 2020,Canada,5828.324,81.7
271
+ 2020,Germany,6938.983,81.1
272
+ 2020,France,5468.418,82.3
273
+ 2020,Great Britain,5018.7,80.4
274
+ 2020,Japan,4665.641,84.7
275
+ 2020,USA,11859.179,77.0
data/seaborn/iris.csv ADDED
@@ -0,0 +1,151 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ sepal_length,sepal_width,petal_length,petal_width,species
2
+ 5.1,3.5,1.4,0.2,setosa
3
+ 4.9,3.0,1.4,0.2,setosa
4
+ 4.7,3.2,1.3,0.2,setosa
5
+ 4.6,3.1,1.5,0.2,setosa
6
+ 5.0,3.6,1.4,0.2,setosa
7
+ 5.4,3.9,1.7,0.4,setosa
8
+ 4.6,3.4,1.4,0.3,setosa
9
+ 5.0,3.4,1.5,0.2,setosa
10
+ 4.4,2.9,1.4,0.2,setosa
11
+ 4.9,3.1,1.5,0.1,setosa
12
+ 5.4,3.7,1.5,0.2,setosa
13
+ 4.8,3.4,1.6,0.2,setosa
14
+ 4.8,3.0,1.4,0.1,setosa
15
+ 4.3,3.0,1.1,0.1,setosa
16
+ 5.8,4.0,1.2,0.2,setosa
17
+ 5.7,4.4,1.5,0.4,setosa
18
+ 5.4,3.9,1.3,0.4,setosa
19
+ 5.1,3.5,1.4,0.3,setosa
20
+ 5.7,3.8,1.7,0.3,setosa
21
+ 5.1,3.8,1.5,0.3,setosa
22
+ 5.4,3.4,1.7,0.2,setosa
23
+ 5.1,3.7,1.5,0.4,setosa
24
+ 4.6,3.6,1.0,0.2,setosa
25
+ 5.1,3.3,1.7,0.5,setosa
26
+ 4.8,3.4,1.9,0.2,setosa
27
+ 5.0,3.0,1.6,0.2,setosa
28
+ 5.0,3.4,1.6,0.4,setosa
29
+ 5.2,3.5,1.5,0.2,setosa
30
+ 5.2,3.4,1.4,0.2,setosa
31
+ 4.7,3.2,1.6,0.2,setosa
32
+ 4.8,3.1,1.6,0.2,setosa
33
+ 5.4,3.4,1.5,0.4,setosa
34
+ 5.2,4.1,1.5,0.1,setosa
35
+ 5.5,4.2,1.4,0.2,setosa
36
+ 4.9,3.1,1.5,0.2,setosa
37
+ 5.0,3.2,1.2,0.2,setosa
38
+ 5.5,3.5,1.3,0.2,setosa
39
+ 4.9,3.6,1.4,0.1,setosa
40
+ 4.4,3.0,1.3,0.2,setosa
41
+ 5.1,3.4,1.5,0.2,setosa
42
+ 5.0,3.5,1.3,0.3,setosa
43
+ 4.5,2.3,1.3,0.3,setosa
44
+ 4.4,3.2,1.3,0.2,setosa
45
+ 5.0,3.5,1.6,0.6,setosa
46
+ 5.1,3.8,1.9,0.4,setosa
47
+ 4.8,3.0,1.4,0.3,setosa
48
+ 5.1,3.8,1.6,0.2,setosa
49
+ 4.6,3.2,1.4,0.2,setosa
50
+ 5.3,3.7,1.5,0.2,setosa
51
+ 5.0,3.3,1.4,0.2,setosa
52
+ 7.0,3.2,4.7,1.4,versicolor
53
+ 6.4,3.2,4.5,1.5,versicolor
54
+ 6.9,3.1,4.9,1.5,versicolor
55
+ 5.5,2.3,4.0,1.3,versicolor
56
+ 6.5,2.8,4.6,1.5,versicolor
57
+ 5.7,2.8,4.5,1.3,versicolor
58
+ 6.3,3.3,4.7,1.6,versicolor
59
+ 4.9,2.4,3.3,1.0,versicolor
60
+ 6.6,2.9,4.6,1.3,versicolor
61
+ 5.2,2.7,3.9,1.4,versicolor
62
+ 5.0,2.0,3.5,1.0,versicolor
63
+ 5.9,3.0,4.2,1.5,versicolor
64
+ 6.0,2.2,4.0,1.0,versicolor
65
+ 6.1,2.9,4.7,1.4,versicolor
66
+ 5.6,2.9,3.6,1.3,versicolor
67
+ 6.7,3.1,4.4,1.4,versicolor
68
+ 5.6,3.0,4.5,1.5,versicolor
69
+ 5.8,2.7,4.1,1.0,versicolor
70
+ 6.2,2.2,4.5,1.5,versicolor
71
+ 5.6,2.5,3.9,1.1,versicolor
72
+ 5.9,3.2,4.8,1.8,versicolor
73
+ 6.1,2.8,4.0,1.3,versicolor
74
+ 6.3,2.5,4.9,1.5,versicolor
75
+ 6.1,2.8,4.7,1.2,versicolor
76
+ 6.4,2.9,4.3,1.3,versicolor
77
+ 6.6,3.0,4.4,1.4,versicolor
78
+ 6.8,2.8,4.8,1.4,versicolor
79
+ 6.7,3.0,5.0,1.7,versicolor
80
+ 6.0,2.9,4.5,1.5,versicolor
81
+ 5.7,2.6,3.5,1.0,versicolor
82
+ 5.5,2.4,3.8,1.1,versicolor
83
+ 5.5,2.4,3.7,1.0,versicolor
84
+ 5.8,2.7,3.9,1.2,versicolor
85
+ 6.0,2.7,5.1,1.6,versicolor
86
+ 5.4,3.0,4.5,1.5,versicolor
87
+ 6.0,3.4,4.5,1.6,versicolor
88
+ 6.7,3.1,4.7,1.5,versicolor
89
+ 6.3,2.3,4.4,1.3,versicolor
90
+ 5.6,3.0,4.1,1.3,versicolor
91
+ 5.5,2.5,4.0,1.3,versicolor
92
+ 5.5,2.6,4.4,1.2,versicolor
93
+ 6.1,3.0,4.6,1.4,versicolor
94
+ 5.8,2.6,4.0,1.2,versicolor
95
+ 5.0,2.3,3.3,1.0,versicolor
96
+ 5.6,2.7,4.2,1.3,versicolor
97
+ 5.7,3.0,4.2,1.2,versicolor
98
+ 5.7,2.9,4.2,1.3,versicolor
99
+ 6.2,2.9,4.3,1.3,versicolor
100
+ 5.1,2.5,3.0,1.1,versicolor
101
+ 5.7,2.8,4.1,1.3,versicolor
102
+ 6.3,3.3,6.0,2.5,virginica
103
+ 5.8,2.7,5.1,1.9,virginica
104
+ 7.1,3.0,5.9,2.1,virginica
105
+ 6.3,2.9,5.6,1.8,virginica
106
+ 6.5,3.0,5.8,2.2,virginica
107
+ 7.6,3.0,6.6,2.1,virginica
108
+ 4.9,2.5,4.5,1.7,virginica
109
+ 7.3,2.9,6.3,1.8,virginica
110
+ 6.7,2.5,5.8,1.8,virginica
111
+ 7.2,3.6,6.1,2.5,virginica
112
+ 6.5,3.2,5.1,2.0,virginica
113
+ 6.4,2.7,5.3,1.9,virginica
114
+ 6.8,3.0,5.5,2.1,virginica
115
+ 5.7,2.5,5.0,2.0,virginica
116
+ 5.8,2.8,5.1,2.4,virginica
117
+ 6.4,3.2,5.3,2.3,virginica
118
+ 6.5,3.0,5.5,1.8,virginica
119
+ 7.7,3.8,6.7,2.2,virginica
120
+ 7.7,2.6,6.9,2.3,virginica
121
+ 6.0,2.2,5.0,1.5,virginica
122
+ 6.9,3.2,5.7,2.3,virginica
123
+ 5.6,2.8,4.9,2.0,virginica
124
+ 7.7,2.8,6.7,2.0,virginica
125
+ 6.3,2.7,4.9,1.8,virginica
126
+ 6.7,3.3,5.7,2.1,virginica
127
+ 7.2,3.2,6.0,1.8,virginica
128
+ 6.2,2.8,4.8,1.8,virginica
129
+ 6.1,3.0,4.9,1.8,virginica
130
+ 6.4,2.8,5.6,2.1,virginica
131
+ 7.2,3.0,5.8,1.6,virginica
132
+ 7.4,2.8,6.1,1.9,virginica
133
+ 7.9,3.8,6.4,2.0,virginica
134
+ 6.4,2.8,5.6,2.2,virginica
135
+ 6.3,2.8,5.1,1.5,virginica
136
+ 6.1,2.6,5.6,1.4,virginica
137
+ 7.7,3.0,6.1,2.3,virginica
138
+ 6.3,3.4,5.6,2.4,virginica
139
+ 6.4,3.1,5.5,1.8,virginica
140
+ 6.0,3.0,4.8,1.8,virginica
141
+ 6.9,3.1,5.4,2.1,virginica
142
+ 6.7,3.1,5.6,2.4,virginica
143
+ 6.9,3.1,5.1,2.3,virginica
144
+ 5.8,2.7,5.1,1.9,virginica
145
+ 6.8,3.2,5.9,2.3,virginica
146
+ 6.7,3.3,5.7,2.5,virginica
147
+ 6.7,3.0,5.2,2.3,virginica
148
+ 6.3,2.5,5.0,1.9,virginica
149
+ 6.5,3.0,5.2,2.0,virginica
150
+ 6.2,3.4,5.4,2.3,virginica
151
+ 5.9,3.0,5.1,1.8,virginica
data/seaborn/mpg.csv ADDED
@@ -0,0 +1,399 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ mpg,cylinders,displacement,horsepower,weight,acceleration,model_year,origin,name
2
+ 18.0,8,307.0,130.0,3504,12.0,70,usa,chevrolet chevelle malibu
3
+ 15.0,8,350.0,165.0,3693,11.5,70,usa,buick skylark 320
4
+ 18.0,8,318.0,150.0,3436,11.0,70,usa,plymouth satellite
5
+ 16.0,8,304.0,150.0,3433,12.0,70,usa,amc rebel sst
6
+ 17.0,8,302.0,140.0,3449,10.5,70,usa,ford torino
7
+ 15.0,8,429.0,198.0,4341,10.0,70,usa,ford galaxie 500
8
+ 14.0,8,454.0,220.0,4354,9.0,70,usa,chevrolet impala
9
+ 14.0,8,440.0,215.0,4312,8.5,70,usa,plymouth fury iii
10
+ 14.0,8,455.0,225.0,4425,10.0,70,usa,pontiac catalina
11
+ 15.0,8,390.0,190.0,3850,8.5,70,usa,amc ambassador dpl
12
+ 15.0,8,383.0,170.0,3563,10.0,70,usa,dodge challenger se
13
+ 14.0,8,340.0,160.0,3609,8.0,70,usa,plymouth 'cuda 340
14
+ 15.0,8,400.0,150.0,3761,9.5,70,usa,chevrolet monte carlo
15
+ 14.0,8,455.0,225.0,3086,10.0,70,usa,buick estate wagon (sw)
16
+ 24.0,4,113.0,95.0,2372,15.0,70,japan,toyota corona mark ii
17
+ 22.0,6,198.0,95.0,2833,15.5,70,usa,plymouth duster
18
+ 18.0,6,199.0,97.0,2774,15.5,70,usa,amc hornet
19
+ 21.0,6,200.0,85.0,2587,16.0,70,usa,ford maverick
20
+ 27.0,4,97.0,88.0,2130,14.5,70,japan,datsun pl510
21
+ 26.0,4,97.0,46.0,1835,20.5,70,europe,volkswagen 1131 deluxe sedan
22
+ 25.0,4,110.0,87.0,2672,17.5,70,europe,peugeot 504
23
+ 24.0,4,107.0,90.0,2430,14.5,70,europe,audi 100 ls
24
+ 25.0,4,104.0,95.0,2375,17.5,70,europe,saab 99e
25
+ 26.0,4,121.0,113.0,2234,12.5,70,europe,bmw 2002
26
+ 21.0,6,199.0,90.0,2648,15.0,70,usa,amc gremlin
27
+ 10.0,8,360.0,215.0,4615,14.0,70,usa,ford f250
28
+ 10.0,8,307.0,200.0,4376,15.0,70,usa,chevy c20
29
+ 11.0,8,318.0,210.0,4382,13.5,70,usa,dodge d200
30
+ 9.0,8,304.0,193.0,4732,18.5,70,usa,hi 1200d
31
+ 27.0,4,97.0,88.0,2130,14.5,71,japan,datsun pl510
32
+ 28.0,4,140.0,90.0,2264,15.5,71,usa,chevrolet vega 2300
33
+ 25.0,4,113.0,95.0,2228,14.0,71,japan,toyota corona
34
+ 25.0,4,98.0,,2046,19.0,71,usa,ford pinto
35
+ 19.0,6,232.0,100.0,2634,13.0,71,usa,amc gremlin
36
+ 16.0,6,225.0,105.0,3439,15.5,71,usa,plymouth satellite custom
37
+ 17.0,6,250.0,100.0,3329,15.5,71,usa,chevrolet chevelle malibu
38
+ 19.0,6,250.0,88.0,3302,15.5,71,usa,ford torino 500
39
+ 18.0,6,232.0,100.0,3288,15.5,71,usa,amc matador
40
+ 14.0,8,350.0,165.0,4209,12.0,71,usa,chevrolet impala
41
+ 14.0,8,400.0,175.0,4464,11.5,71,usa,pontiac catalina brougham
42
+ 14.0,8,351.0,153.0,4154,13.5,71,usa,ford galaxie 500
43
+ 14.0,8,318.0,150.0,4096,13.0,71,usa,plymouth fury iii
44
+ 12.0,8,383.0,180.0,4955,11.5,71,usa,dodge monaco (sw)
45
+ 13.0,8,400.0,170.0,4746,12.0,71,usa,ford country squire (sw)
46
+ 13.0,8,400.0,175.0,5140,12.0,71,usa,pontiac safari (sw)
47
+ 18.0,6,258.0,110.0,2962,13.5,71,usa,amc hornet sportabout (sw)
48
+ 22.0,4,140.0,72.0,2408,19.0,71,usa,chevrolet vega (sw)
49
+ 19.0,6,250.0,100.0,3282,15.0,71,usa,pontiac firebird
50
+ 18.0,6,250.0,88.0,3139,14.5,71,usa,ford mustang
51
+ 23.0,4,122.0,86.0,2220,14.0,71,usa,mercury capri 2000
52
+ 28.0,4,116.0,90.0,2123,14.0,71,europe,opel 1900
53
+ 30.0,4,79.0,70.0,2074,19.5,71,europe,peugeot 304
54
+ 30.0,4,88.0,76.0,2065,14.5,71,europe,fiat 124b
55
+ 31.0,4,71.0,65.0,1773,19.0,71,japan,toyota corolla 1200
56
+ 35.0,4,72.0,69.0,1613,18.0,71,japan,datsun 1200
57
+ 27.0,4,97.0,60.0,1834,19.0,71,europe,volkswagen model 111
58
+ 26.0,4,91.0,70.0,1955,20.5,71,usa,plymouth cricket
59
+ 24.0,4,113.0,95.0,2278,15.5,72,japan,toyota corona hardtop
60
+ 25.0,4,97.5,80.0,2126,17.0,72,usa,dodge colt hardtop
61
+ 23.0,4,97.0,54.0,2254,23.5,72,europe,volkswagen type 3
62
+ 20.0,4,140.0,90.0,2408,19.5,72,usa,chevrolet vega
63
+ 21.0,4,122.0,86.0,2226,16.5,72,usa,ford pinto runabout
64
+ 13.0,8,350.0,165.0,4274,12.0,72,usa,chevrolet impala
65
+ 14.0,8,400.0,175.0,4385,12.0,72,usa,pontiac catalina
66
+ 15.0,8,318.0,150.0,4135,13.5,72,usa,plymouth fury iii
67
+ 14.0,8,351.0,153.0,4129,13.0,72,usa,ford galaxie 500
68
+ 17.0,8,304.0,150.0,3672,11.5,72,usa,amc ambassador sst
69
+ 11.0,8,429.0,208.0,4633,11.0,72,usa,mercury marquis
70
+ 13.0,8,350.0,155.0,4502,13.5,72,usa,buick lesabre custom
71
+ 12.0,8,350.0,160.0,4456,13.5,72,usa,oldsmobile delta 88 royale
72
+ 13.0,8,400.0,190.0,4422,12.5,72,usa,chrysler newport royal
73
+ 19.0,3,70.0,97.0,2330,13.5,72,japan,mazda rx2 coupe
74
+ 15.0,8,304.0,150.0,3892,12.5,72,usa,amc matador (sw)
75
+ 13.0,8,307.0,130.0,4098,14.0,72,usa,chevrolet chevelle concours (sw)
76
+ 13.0,8,302.0,140.0,4294,16.0,72,usa,ford gran torino (sw)
77
+ 14.0,8,318.0,150.0,4077,14.0,72,usa,plymouth satellite custom (sw)
78
+ 18.0,4,121.0,112.0,2933,14.5,72,europe,volvo 145e (sw)
79
+ 22.0,4,121.0,76.0,2511,18.0,72,europe,volkswagen 411 (sw)
80
+ 21.0,4,120.0,87.0,2979,19.5,72,europe,peugeot 504 (sw)
81
+ 26.0,4,96.0,69.0,2189,18.0,72,europe,renault 12 (sw)
82
+ 22.0,4,122.0,86.0,2395,16.0,72,usa,ford pinto (sw)
83
+ 28.0,4,97.0,92.0,2288,17.0,72,japan,datsun 510 (sw)
84
+ 23.0,4,120.0,97.0,2506,14.5,72,japan,toyouta corona mark ii (sw)
85
+ 28.0,4,98.0,80.0,2164,15.0,72,usa,dodge colt (sw)
86
+ 27.0,4,97.0,88.0,2100,16.5,72,japan,toyota corolla 1600 (sw)
87
+ 13.0,8,350.0,175.0,4100,13.0,73,usa,buick century 350
88
+ 14.0,8,304.0,150.0,3672,11.5,73,usa,amc matador
89
+ 13.0,8,350.0,145.0,3988,13.0,73,usa,chevrolet malibu
90
+ 14.0,8,302.0,137.0,4042,14.5,73,usa,ford gran torino
91
+ 15.0,8,318.0,150.0,3777,12.5,73,usa,dodge coronet custom
92
+ 12.0,8,429.0,198.0,4952,11.5,73,usa,mercury marquis brougham
93
+ 13.0,8,400.0,150.0,4464,12.0,73,usa,chevrolet caprice classic
94
+ 13.0,8,351.0,158.0,4363,13.0,73,usa,ford ltd
95
+ 14.0,8,318.0,150.0,4237,14.5,73,usa,plymouth fury gran sedan
96
+ 13.0,8,440.0,215.0,4735,11.0,73,usa,chrysler new yorker brougham
97
+ 12.0,8,455.0,225.0,4951,11.0,73,usa,buick electra 225 custom
98
+ 13.0,8,360.0,175.0,3821,11.0,73,usa,amc ambassador brougham
99
+ 18.0,6,225.0,105.0,3121,16.5,73,usa,plymouth valiant
100
+ 16.0,6,250.0,100.0,3278,18.0,73,usa,chevrolet nova custom
101
+ 18.0,6,232.0,100.0,2945,16.0,73,usa,amc hornet
102
+ 18.0,6,250.0,88.0,3021,16.5,73,usa,ford maverick
103
+ 23.0,6,198.0,95.0,2904,16.0,73,usa,plymouth duster
104
+ 26.0,4,97.0,46.0,1950,21.0,73,europe,volkswagen super beetle
105
+ 11.0,8,400.0,150.0,4997,14.0,73,usa,chevrolet impala
106
+ 12.0,8,400.0,167.0,4906,12.5,73,usa,ford country
107
+ 13.0,8,360.0,170.0,4654,13.0,73,usa,plymouth custom suburb
108
+ 12.0,8,350.0,180.0,4499,12.5,73,usa,oldsmobile vista cruiser
109
+ 18.0,6,232.0,100.0,2789,15.0,73,usa,amc gremlin
110
+ 20.0,4,97.0,88.0,2279,19.0,73,japan,toyota carina
111
+ 21.0,4,140.0,72.0,2401,19.5,73,usa,chevrolet vega
112
+ 22.0,4,108.0,94.0,2379,16.5,73,japan,datsun 610
113
+ 18.0,3,70.0,90.0,2124,13.5,73,japan,maxda rx3
114
+ 19.0,4,122.0,85.0,2310,18.5,73,usa,ford pinto
115
+ 21.0,6,155.0,107.0,2472,14.0,73,usa,mercury capri v6
116
+ 26.0,4,98.0,90.0,2265,15.5,73,europe,fiat 124 sport coupe
117
+ 15.0,8,350.0,145.0,4082,13.0,73,usa,chevrolet monte carlo s
118
+ 16.0,8,400.0,230.0,4278,9.5,73,usa,pontiac grand prix
119
+ 29.0,4,68.0,49.0,1867,19.5,73,europe,fiat 128
120
+ 24.0,4,116.0,75.0,2158,15.5,73,europe,opel manta
121
+ 20.0,4,114.0,91.0,2582,14.0,73,europe,audi 100ls
122
+ 19.0,4,121.0,112.0,2868,15.5,73,europe,volvo 144ea
123
+ 15.0,8,318.0,150.0,3399,11.0,73,usa,dodge dart custom
124
+ 24.0,4,121.0,110.0,2660,14.0,73,europe,saab 99le
125
+ 20.0,6,156.0,122.0,2807,13.5,73,japan,toyota mark ii
126
+ 11.0,8,350.0,180.0,3664,11.0,73,usa,oldsmobile omega
127
+ 20.0,6,198.0,95.0,3102,16.5,74,usa,plymouth duster
128
+ 21.0,6,200.0,,2875,17.0,74,usa,ford maverick
129
+ 19.0,6,232.0,100.0,2901,16.0,74,usa,amc hornet
130
+ 15.0,6,250.0,100.0,3336,17.0,74,usa,chevrolet nova
131
+ 31.0,4,79.0,67.0,1950,19.0,74,japan,datsun b210
132
+ 26.0,4,122.0,80.0,2451,16.5,74,usa,ford pinto
133
+ 32.0,4,71.0,65.0,1836,21.0,74,japan,toyota corolla 1200
134
+ 25.0,4,140.0,75.0,2542,17.0,74,usa,chevrolet vega
135
+ 16.0,6,250.0,100.0,3781,17.0,74,usa,chevrolet chevelle malibu classic
136
+ 16.0,6,258.0,110.0,3632,18.0,74,usa,amc matador
137
+ 18.0,6,225.0,105.0,3613,16.5,74,usa,plymouth satellite sebring
138
+ 16.0,8,302.0,140.0,4141,14.0,74,usa,ford gran torino
139
+ 13.0,8,350.0,150.0,4699,14.5,74,usa,buick century luxus (sw)
140
+ 14.0,8,318.0,150.0,4457,13.5,74,usa,dodge coronet custom (sw)
141
+ 14.0,8,302.0,140.0,4638,16.0,74,usa,ford gran torino (sw)
142
+ 14.0,8,304.0,150.0,4257,15.5,74,usa,amc matador (sw)
143
+ 29.0,4,98.0,83.0,2219,16.5,74,europe,audi fox
144
+ 26.0,4,79.0,67.0,1963,15.5,74,europe,volkswagen dasher
145
+ 26.0,4,97.0,78.0,2300,14.5,74,europe,opel manta
146
+ 31.0,4,76.0,52.0,1649,16.5,74,japan,toyota corona
147
+ 32.0,4,83.0,61.0,2003,19.0,74,japan,datsun 710
148
+ 28.0,4,90.0,75.0,2125,14.5,74,usa,dodge colt
149
+ 24.0,4,90.0,75.0,2108,15.5,74,europe,fiat 128
150
+ 26.0,4,116.0,75.0,2246,14.0,74,europe,fiat 124 tc
151
+ 24.0,4,120.0,97.0,2489,15.0,74,japan,honda civic
152
+ 26.0,4,108.0,93.0,2391,15.5,74,japan,subaru
153
+ 31.0,4,79.0,67.0,2000,16.0,74,europe,fiat x1.9
154
+ 19.0,6,225.0,95.0,3264,16.0,75,usa,plymouth valiant custom
155
+ 18.0,6,250.0,105.0,3459,16.0,75,usa,chevrolet nova
156
+ 15.0,6,250.0,72.0,3432,21.0,75,usa,mercury monarch
157
+ 15.0,6,250.0,72.0,3158,19.5,75,usa,ford maverick
158
+ 16.0,8,400.0,170.0,4668,11.5,75,usa,pontiac catalina
159
+ 15.0,8,350.0,145.0,4440,14.0,75,usa,chevrolet bel air
160
+ 16.0,8,318.0,150.0,4498,14.5,75,usa,plymouth grand fury
161
+ 14.0,8,351.0,148.0,4657,13.5,75,usa,ford ltd
162
+ 17.0,6,231.0,110.0,3907,21.0,75,usa,buick century
163
+ 16.0,6,250.0,105.0,3897,18.5,75,usa,chevroelt chevelle malibu
164
+ 15.0,6,258.0,110.0,3730,19.0,75,usa,amc matador
165
+ 18.0,6,225.0,95.0,3785,19.0,75,usa,plymouth fury
166
+ 21.0,6,231.0,110.0,3039,15.0,75,usa,buick skyhawk
167
+ 20.0,8,262.0,110.0,3221,13.5,75,usa,chevrolet monza 2+2
168
+ 13.0,8,302.0,129.0,3169,12.0,75,usa,ford mustang ii
169
+ 29.0,4,97.0,75.0,2171,16.0,75,japan,toyota corolla
170
+ 23.0,4,140.0,83.0,2639,17.0,75,usa,ford pinto
171
+ 20.0,6,232.0,100.0,2914,16.0,75,usa,amc gremlin
172
+ 23.0,4,140.0,78.0,2592,18.5,75,usa,pontiac astro
173
+ 24.0,4,134.0,96.0,2702,13.5,75,japan,toyota corona
174
+ 25.0,4,90.0,71.0,2223,16.5,75,europe,volkswagen dasher
175
+ 24.0,4,119.0,97.0,2545,17.0,75,japan,datsun 710
176
+ 18.0,6,171.0,97.0,2984,14.5,75,usa,ford pinto
177
+ 29.0,4,90.0,70.0,1937,14.0,75,europe,volkswagen rabbit
178
+ 19.0,6,232.0,90.0,3211,17.0,75,usa,amc pacer
179
+ 23.0,4,115.0,95.0,2694,15.0,75,europe,audi 100ls
180
+ 23.0,4,120.0,88.0,2957,17.0,75,europe,peugeot 504
181
+ 22.0,4,121.0,98.0,2945,14.5,75,europe,volvo 244dl
182
+ 25.0,4,121.0,115.0,2671,13.5,75,europe,saab 99le
183
+ 33.0,4,91.0,53.0,1795,17.5,75,japan,honda civic cvcc
184
+ 28.0,4,107.0,86.0,2464,15.5,76,europe,fiat 131
185
+ 25.0,4,116.0,81.0,2220,16.9,76,europe,opel 1900
186
+ 25.0,4,140.0,92.0,2572,14.9,76,usa,capri ii
187
+ 26.0,4,98.0,79.0,2255,17.7,76,usa,dodge colt
188
+ 27.0,4,101.0,83.0,2202,15.3,76,europe,renault 12tl
189
+ 17.5,8,305.0,140.0,4215,13.0,76,usa,chevrolet chevelle malibu classic
190
+ 16.0,8,318.0,150.0,4190,13.0,76,usa,dodge coronet brougham
191
+ 15.5,8,304.0,120.0,3962,13.9,76,usa,amc matador
192
+ 14.5,8,351.0,152.0,4215,12.8,76,usa,ford gran torino
193
+ 22.0,6,225.0,100.0,3233,15.4,76,usa,plymouth valiant
194
+ 22.0,6,250.0,105.0,3353,14.5,76,usa,chevrolet nova
195
+ 24.0,6,200.0,81.0,3012,17.6,76,usa,ford maverick
196
+ 22.5,6,232.0,90.0,3085,17.6,76,usa,amc hornet
197
+ 29.0,4,85.0,52.0,2035,22.2,76,usa,chevrolet chevette
198
+ 24.5,4,98.0,60.0,2164,22.1,76,usa,chevrolet woody
199
+ 29.0,4,90.0,70.0,1937,14.2,76,europe,vw rabbit
200
+ 33.0,4,91.0,53.0,1795,17.4,76,japan,honda civic
201
+ 20.0,6,225.0,100.0,3651,17.7,76,usa,dodge aspen se
202
+ 18.0,6,250.0,78.0,3574,21.0,76,usa,ford granada ghia
203
+ 18.5,6,250.0,110.0,3645,16.2,76,usa,pontiac ventura sj
204
+ 17.5,6,258.0,95.0,3193,17.8,76,usa,amc pacer d/l
205
+ 29.5,4,97.0,71.0,1825,12.2,76,europe,volkswagen rabbit
206
+ 32.0,4,85.0,70.0,1990,17.0,76,japan,datsun b-210
207
+ 28.0,4,97.0,75.0,2155,16.4,76,japan,toyota corolla
208
+ 26.5,4,140.0,72.0,2565,13.6,76,usa,ford pinto
209
+ 20.0,4,130.0,102.0,3150,15.7,76,europe,volvo 245
210
+ 13.0,8,318.0,150.0,3940,13.2,76,usa,plymouth volare premier v8
211
+ 19.0,4,120.0,88.0,3270,21.9,76,europe,peugeot 504
212
+ 19.0,6,156.0,108.0,2930,15.5,76,japan,toyota mark ii
213
+ 16.5,6,168.0,120.0,3820,16.7,76,europe,mercedes-benz 280s
214
+ 16.5,8,350.0,180.0,4380,12.1,76,usa,cadillac seville
215
+ 13.0,8,350.0,145.0,4055,12.0,76,usa,chevy c10
216
+ 13.0,8,302.0,130.0,3870,15.0,76,usa,ford f108
217
+ 13.0,8,318.0,150.0,3755,14.0,76,usa,dodge d100
218
+ 31.5,4,98.0,68.0,2045,18.5,77,japan,honda accord cvcc
219
+ 30.0,4,111.0,80.0,2155,14.8,77,usa,buick opel isuzu deluxe
220
+ 36.0,4,79.0,58.0,1825,18.6,77,europe,renault 5 gtl
221
+ 25.5,4,122.0,96.0,2300,15.5,77,usa,plymouth arrow gs
222
+ 33.5,4,85.0,70.0,1945,16.8,77,japan,datsun f-10 hatchback
223
+ 17.5,8,305.0,145.0,3880,12.5,77,usa,chevrolet caprice classic
224
+ 17.0,8,260.0,110.0,4060,19.0,77,usa,oldsmobile cutlass supreme
225
+ 15.5,8,318.0,145.0,4140,13.7,77,usa,dodge monaco brougham
226
+ 15.0,8,302.0,130.0,4295,14.9,77,usa,mercury cougar brougham
227
+ 17.5,6,250.0,110.0,3520,16.4,77,usa,chevrolet concours
228
+ 20.5,6,231.0,105.0,3425,16.9,77,usa,buick skylark
229
+ 19.0,6,225.0,100.0,3630,17.7,77,usa,plymouth volare custom
230
+ 18.5,6,250.0,98.0,3525,19.0,77,usa,ford granada
231
+ 16.0,8,400.0,180.0,4220,11.1,77,usa,pontiac grand prix lj
232
+ 15.5,8,350.0,170.0,4165,11.4,77,usa,chevrolet monte carlo landau
233
+ 15.5,8,400.0,190.0,4325,12.2,77,usa,chrysler cordoba
234
+ 16.0,8,351.0,149.0,4335,14.5,77,usa,ford thunderbird
235
+ 29.0,4,97.0,78.0,1940,14.5,77,europe,volkswagen rabbit custom
236
+ 24.5,4,151.0,88.0,2740,16.0,77,usa,pontiac sunbird coupe
237
+ 26.0,4,97.0,75.0,2265,18.2,77,japan,toyota corolla liftback
238
+ 25.5,4,140.0,89.0,2755,15.8,77,usa,ford mustang ii 2+2
239
+ 30.5,4,98.0,63.0,2051,17.0,77,usa,chevrolet chevette
240
+ 33.5,4,98.0,83.0,2075,15.9,77,usa,dodge colt m/m
241
+ 30.0,4,97.0,67.0,1985,16.4,77,japan,subaru dl
242
+ 30.5,4,97.0,78.0,2190,14.1,77,europe,volkswagen dasher
243
+ 22.0,6,146.0,97.0,2815,14.5,77,japan,datsun 810
244
+ 21.5,4,121.0,110.0,2600,12.8,77,europe,bmw 320i
245
+ 21.5,3,80.0,110.0,2720,13.5,77,japan,mazda rx-4
246
+ 43.1,4,90.0,48.0,1985,21.5,78,europe,volkswagen rabbit custom diesel
247
+ 36.1,4,98.0,66.0,1800,14.4,78,usa,ford fiesta
248
+ 32.8,4,78.0,52.0,1985,19.4,78,japan,mazda glc deluxe
249
+ 39.4,4,85.0,70.0,2070,18.6,78,japan,datsun b210 gx
250
+ 36.1,4,91.0,60.0,1800,16.4,78,japan,honda civic cvcc
251
+ 19.9,8,260.0,110.0,3365,15.5,78,usa,oldsmobile cutlass salon brougham
252
+ 19.4,8,318.0,140.0,3735,13.2,78,usa,dodge diplomat
253
+ 20.2,8,302.0,139.0,3570,12.8,78,usa,mercury monarch ghia
254
+ 19.2,6,231.0,105.0,3535,19.2,78,usa,pontiac phoenix lj
255
+ 20.5,6,200.0,95.0,3155,18.2,78,usa,chevrolet malibu
256
+ 20.2,6,200.0,85.0,2965,15.8,78,usa,ford fairmont (auto)
257
+ 25.1,4,140.0,88.0,2720,15.4,78,usa,ford fairmont (man)
258
+ 20.5,6,225.0,100.0,3430,17.2,78,usa,plymouth volare
259
+ 19.4,6,232.0,90.0,3210,17.2,78,usa,amc concord
260
+ 20.6,6,231.0,105.0,3380,15.8,78,usa,buick century special
261
+ 20.8,6,200.0,85.0,3070,16.7,78,usa,mercury zephyr
262
+ 18.6,6,225.0,110.0,3620,18.7,78,usa,dodge aspen
263
+ 18.1,6,258.0,120.0,3410,15.1,78,usa,amc concord d/l
264
+ 19.2,8,305.0,145.0,3425,13.2,78,usa,chevrolet monte carlo landau
265
+ 17.7,6,231.0,165.0,3445,13.4,78,usa,buick regal sport coupe (turbo)
266
+ 18.1,8,302.0,139.0,3205,11.2,78,usa,ford futura
267
+ 17.5,8,318.0,140.0,4080,13.7,78,usa,dodge magnum xe
268
+ 30.0,4,98.0,68.0,2155,16.5,78,usa,chevrolet chevette
269
+ 27.5,4,134.0,95.0,2560,14.2,78,japan,toyota corona
270
+ 27.2,4,119.0,97.0,2300,14.7,78,japan,datsun 510
271
+ 30.9,4,105.0,75.0,2230,14.5,78,usa,dodge omni
272
+ 21.1,4,134.0,95.0,2515,14.8,78,japan,toyota celica gt liftback
273
+ 23.2,4,156.0,105.0,2745,16.7,78,usa,plymouth sapporo
274
+ 23.8,4,151.0,85.0,2855,17.6,78,usa,oldsmobile starfire sx
275
+ 23.9,4,119.0,97.0,2405,14.9,78,japan,datsun 200-sx
276
+ 20.3,5,131.0,103.0,2830,15.9,78,europe,audi 5000
277
+ 17.0,6,163.0,125.0,3140,13.6,78,europe,volvo 264gl
278
+ 21.6,4,121.0,115.0,2795,15.7,78,europe,saab 99gle
279
+ 16.2,6,163.0,133.0,3410,15.8,78,europe,peugeot 604sl
280
+ 31.5,4,89.0,71.0,1990,14.9,78,europe,volkswagen scirocco
281
+ 29.5,4,98.0,68.0,2135,16.6,78,japan,honda accord lx
282
+ 21.5,6,231.0,115.0,3245,15.4,79,usa,pontiac lemans v6
283
+ 19.8,6,200.0,85.0,2990,18.2,79,usa,mercury zephyr 6
284
+ 22.3,4,140.0,88.0,2890,17.3,79,usa,ford fairmont 4
285
+ 20.2,6,232.0,90.0,3265,18.2,79,usa,amc concord dl 6
286
+ 20.6,6,225.0,110.0,3360,16.6,79,usa,dodge aspen 6
287
+ 17.0,8,305.0,130.0,3840,15.4,79,usa,chevrolet caprice classic
288
+ 17.6,8,302.0,129.0,3725,13.4,79,usa,ford ltd landau
289
+ 16.5,8,351.0,138.0,3955,13.2,79,usa,mercury grand marquis
290
+ 18.2,8,318.0,135.0,3830,15.2,79,usa,dodge st. regis
291
+ 16.9,8,350.0,155.0,4360,14.9,79,usa,buick estate wagon (sw)
292
+ 15.5,8,351.0,142.0,4054,14.3,79,usa,ford country squire (sw)
293
+ 19.2,8,267.0,125.0,3605,15.0,79,usa,chevrolet malibu classic (sw)
294
+ 18.5,8,360.0,150.0,3940,13.0,79,usa,chrysler lebaron town @ country (sw)
295
+ 31.9,4,89.0,71.0,1925,14.0,79,europe,vw rabbit custom
296
+ 34.1,4,86.0,65.0,1975,15.2,79,japan,maxda glc deluxe
297
+ 35.7,4,98.0,80.0,1915,14.4,79,usa,dodge colt hatchback custom
298
+ 27.4,4,121.0,80.0,2670,15.0,79,usa,amc spirit dl
299
+ 25.4,5,183.0,77.0,3530,20.1,79,europe,mercedes benz 300d
300
+ 23.0,8,350.0,125.0,3900,17.4,79,usa,cadillac eldorado
301
+ 27.2,4,141.0,71.0,3190,24.8,79,europe,peugeot 504
302
+ 23.9,8,260.0,90.0,3420,22.2,79,usa,oldsmobile cutlass salon brougham
303
+ 34.2,4,105.0,70.0,2200,13.2,79,usa,plymouth horizon
304
+ 34.5,4,105.0,70.0,2150,14.9,79,usa,plymouth horizon tc3
305
+ 31.8,4,85.0,65.0,2020,19.2,79,japan,datsun 210
306
+ 37.3,4,91.0,69.0,2130,14.7,79,europe,fiat strada custom
307
+ 28.4,4,151.0,90.0,2670,16.0,79,usa,buick skylark limited
308
+ 28.8,6,173.0,115.0,2595,11.3,79,usa,chevrolet citation
309
+ 26.8,6,173.0,115.0,2700,12.9,79,usa,oldsmobile omega brougham
310
+ 33.5,4,151.0,90.0,2556,13.2,79,usa,pontiac phoenix
311
+ 41.5,4,98.0,76.0,2144,14.7,80,europe,vw rabbit
312
+ 38.1,4,89.0,60.0,1968,18.8,80,japan,toyota corolla tercel
313
+ 32.1,4,98.0,70.0,2120,15.5,80,usa,chevrolet chevette
314
+ 37.2,4,86.0,65.0,2019,16.4,80,japan,datsun 310
315
+ 28.0,4,151.0,90.0,2678,16.5,80,usa,chevrolet citation
316
+ 26.4,4,140.0,88.0,2870,18.1,80,usa,ford fairmont
317
+ 24.3,4,151.0,90.0,3003,20.1,80,usa,amc concord
318
+ 19.1,6,225.0,90.0,3381,18.7,80,usa,dodge aspen
319
+ 34.3,4,97.0,78.0,2188,15.8,80,europe,audi 4000
320
+ 29.8,4,134.0,90.0,2711,15.5,80,japan,toyota corona liftback
321
+ 31.3,4,120.0,75.0,2542,17.5,80,japan,mazda 626
322
+ 37.0,4,119.0,92.0,2434,15.0,80,japan,datsun 510 hatchback
323
+ 32.2,4,108.0,75.0,2265,15.2,80,japan,toyota corolla
324
+ 46.6,4,86.0,65.0,2110,17.9,80,japan,mazda glc
325
+ 27.9,4,156.0,105.0,2800,14.4,80,usa,dodge colt
326
+ 40.8,4,85.0,65.0,2110,19.2,80,japan,datsun 210
327
+ 44.3,4,90.0,48.0,2085,21.7,80,europe,vw rabbit c (diesel)
328
+ 43.4,4,90.0,48.0,2335,23.7,80,europe,vw dasher (diesel)
329
+ 36.4,5,121.0,67.0,2950,19.9,80,europe,audi 5000s (diesel)
330
+ 30.0,4,146.0,67.0,3250,21.8,80,europe,mercedes-benz 240d
331
+ 44.6,4,91.0,67.0,1850,13.8,80,japan,honda civic 1500 gl
332
+ 40.9,4,85.0,,1835,17.3,80,europe,renault lecar deluxe
333
+ 33.8,4,97.0,67.0,2145,18.0,80,japan,subaru dl
334
+ 29.8,4,89.0,62.0,1845,15.3,80,europe,vokswagen rabbit
335
+ 32.7,6,168.0,132.0,2910,11.4,80,japan,datsun 280-zx
336
+ 23.7,3,70.0,100.0,2420,12.5,80,japan,mazda rx-7 gs
337
+ 35.0,4,122.0,88.0,2500,15.1,80,europe,triumph tr7 coupe
338
+ 23.6,4,140.0,,2905,14.3,80,usa,ford mustang cobra
339
+ 32.4,4,107.0,72.0,2290,17.0,80,japan,honda accord
340
+ 27.2,4,135.0,84.0,2490,15.7,81,usa,plymouth reliant
341
+ 26.6,4,151.0,84.0,2635,16.4,81,usa,buick skylark
342
+ 25.8,4,156.0,92.0,2620,14.4,81,usa,dodge aries wagon (sw)
343
+ 23.5,6,173.0,110.0,2725,12.6,81,usa,chevrolet citation
344
+ 30.0,4,135.0,84.0,2385,12.9,81,usa,plymouth reliant
345
+ 39.1,4,79.0,58.0,1755,16.9,81,japan,toyota starlet
346
+ 39.0,4,86.0,64.0,1875,16.4,81,usa,plymouth champ
347
+ 35.1,4,81.0,60.0,1760,16.1,81,japan,honda civic 1300
348
+ 32.3,4,97.0,67.0,2065,17.8,81,japan,subaru
349
+ 37.0,4,85.0,65.0,1975,19.4,81,japan,datsun 210 mpg
350
+ 37.7,4,89.0,62.0,2050,17.3,81,japan,toyota tercel
351
+ 34.1,4,91.0,68.0,1985,16.0,81,japan,mazda glc 4
352
+ 34.7,4,105.0,63.0,2215,14.9,81,usa,plymouth horizon 4
353
+ 34.4,4,98.0,65.0,2045,16.2,81,usa,ford escort 4w
354
+ 29.9,4,98.0,65.0,2380,20.7,81,usa,ford escort 2h
355
+ 33.0,4,105.0,74.0,2190,14.2,81,europe,volkswagen jetta
356
+ 34.5,4,100.0,,2320,15.8,81,europe,renault 18i
357
+ 33.7,4,107.0,75.0,2210,14.4,81,japan,honda prelude
358
+ 32.4,4,108.0,75.0,2350,16.8,81,japan,toyota corolla
359
+ 32.9,4,119.0,100.0,2615,14.8,81,japan,datsun 200sx
360
+ 31.6,4,120.0,74.0,2635,18.3,81,japan,mazda 626
361
+ 28.1,4,141.0,80.0,3230,20.4,81,europe,peugeot 505s turbo diesel
362
+ 30.7,6,145.0,76.0,3160,19.6,81,europe,volvo diesel
363
+ 25.4,6,168.0,116.0,2900,12.6,81,japan,toyota cressida
364
+ 24.2,6,146.0,120.0,2930,13.8,81,japan,datsun 810 maxima
365
+ 22.4,6,231.0,110.0,3415,15.8,81,usa,buick century
366
+ 26.6,8,350.0,105.0,3725,19.0,81,usa,oldsmobile cutlass ls
367
+ 20.2,6,200.0,88.0,3060,17.1,81,usa,ford granada gl
368
+ 17.6,6,225.0,85.0,3465,16.6,81,usa,chrysler lebaron salon
369
+ 28.0,4,112.0,88.0,2605,19.6,82,usa,chevrolet cavalier
370
+ 27.0,4,112.0,88.0,2640,18.6,82,usa,chevrolet cavalier wagon
371
+ 34.0,4,112.0,88.0,2395,18.0,82,usa,chevrolet cavalier 2-door
372
+ 31.0,4,112.0,85.0,2575,16.2,82,usa,pontiac j2000 se hatchback
373
+ 29.0,4,135.0,84.0,2525,16.0,82,usa,dodge aries se
374
+ 27.0,4,151.0,90.0,2735,18.0,82,usa,pontiac phoenix
375
+ 24.0,4,140.0,92.0,2865,16.4,82,usa,ford fairmont futura
376
+ 23.0,4,151.0,,3035,20.5,82,usa,amc concord dl
377
+ 36.0,4,105.0,74.0,1980,15.3,82,europe,volkswagen rabbit l
378
+ 37.0,4,91.0,68.0,2025,18.2,82,japan,mazda glc custom l
379
+ 31.0,4,91.0,68.0,1970,17.6,82,japan,mazda glc custom
380
+ 38.0,4,105.0,63.0,2125,14.7,82,usa,plymouth horizon miser
381
+ 36.0,4,98.0,70.0,2125,17.3,82,usa,mercury lynx l
382
+ 36.0,4,120.0,88.0,2160,14.5,82,japan,nissan stanza xe
383
+ 36.0,4,107.0,75.0,2205,14.5,82,japan,honda accord
384
+ 34.0,4,108.0,70.0,2245,16.9,82,japan,toyota corolla
385
+ 38.0,4,91.0,67.0,1965,15.0,82,japan,honda civic
386
+ 32.0,4,91.0,67.0,1965,15.7,82,japan,honda civic (auto)
387
+ 38.0,4,91.0,67.0,1995,16.2,82,japan,datsun 310 gx
388
+ 25.0,6,181.0,110.0,2945,16.4,82,usa,buick century limited
389
+ 38.0,6,262.0,85.0,3015,17.0,82,usa,oldsmobile cutlass ciera (diesel)
390
+ 26.0,4,156.0,92.0,2585,14.5,82,usa,chrysler lebaron medallion
391
+ 22.0,6,232.0,112.0,2835,14.7,82,usa,ford granada l
392
+ 32.0,4,144.0,96.0,2665,13.9,82,japan,toyota celica gt
393
+ 36.0,4,135.0,84.0,2370,13.0,82,usa,dodge charger 2.2
394
+ 27.0,4,151.0,90.0,2950,17.3,82,usa,chevrolet camaro
395
+ 27.0,4,140.0,86.0,2790,15.6,82,usa,ford mustang gl
396
+ 44.0,4,97.0,52.0,2130,24.6,82,europe,vw pickup
397
+ 32.0,4,135.0,84.0,2295,11.6,82,usa,dodge rampage
398
+ 28.0,4,120.0,79.0,2625,18.6,82,usa,ford ranger
399
+ 31.0,4,119.0,82.0,2720,19.4,82,usa,chevy s-10
data/seaborn/penguins.csv ADDED
@@ -0,0 +1,345 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ species,island,bill_length_mm,bill_depth_mm,flipper_length_mm,body_mass_g,sex
2
+ Adelie,Torgersen,39.1,18.7,181,3750,MALE
3
+ Adelie,Torgersen,39.5,17.4,186,3800,FEMALE
4
+ Adelie,Torgersen,40.3,18,195,3250,FEMALE
5
+ Adelie,Torgersen,,,,,
6
+ Adelie,Torgersen,36.7,19.3,193,3450,FEMALE
7
+ Adelie,Torgersen,39.3,20.6,190,3650,MALE
8
+ Adelie,Torgersen,38.9,17.8,181,3625,FEMALE
9
+ Adelie,Torgersen,39.2,19.6,195,4675,MALE
10
+ Adelie,Torgersen,34.1,18.1,193,3475,
11
+ Adelie,Torgersen,42,20.2,190,4250,
12
+ Adelie,Torgersen,37.8,17.1,186,3300,
13
+ Adelie,Torgersen,37.8,17.3,180,3700,
14
+ Adelie,Torgersen,41.1,17.6,182,3200,FEMALE
15
+ Adelie,Torgersen,38.6,21.2,191,3800,MALE
16
+ Adelie,Torgersen,34.6,21.1,198,4400,MALE
17
+ Adelie,Torgersen,36.6,17.8,185,3700,FEMALE
18
+ Adelie,Torgersen,38.7,19,195,3450,FEMALE
19
+ Adelie,Torgersen,42.5,20.7,197,4500,MALE
20
+ Adelie,Torgersen,34.4,18.4,184,3325,FEMALE
21
+ Adelie,Torgersen,46,21.5,194,4200,MALE
22
+ Adelie,Biscoe,37.8,18.3,174,3400,FEMALE
23
+ Adelie,Biscoe,37.7,18.7,180,3600,MALE
24
+ Adelie,Biscoe,35.9,19.2,189,3800,FEMALE
25
+ Adelie,Biscoe,38.2,18.1,185,3950,MALE
26
+ Adelie,Biscoe,38.8,17.2,180,3800,MALE
27
+ Adelie,Biscoe,35.3,18.9,187,3800,FEMALE
28
+ Adelie,Biscoe,40.6,18.6,183,3550,MALE
29
+ Adelie,Biscoe,40.5,17.9,187,3200,FEMALE
30
+ Adelie,Biscoe,37.9,18.6,172,3150,FEMALE
31
+ Adelie,Biscoe,40.5,18.9,180,3950,MALE
32
+ Adelie,Dream,39.5,16.7,178,3250,FEMALE
33
+ Adelie,Dream,37.2,18.1,178,3900,MALE
34
+ Adelie,Dream,39.5,17.8,188,3300,FEMALE
35
+ Adelie,Dream,40.9,18.9,184,3900,MALE
36
+ Adelie,Dream,36.4,17,195,3325,FEMALE
37
+ Adelie,Dream,39.2,21.1,196,4150,MALE
38
+ Adelie,Dream,38.8,20,190,3950,MALE
39
+ Adelie,Dream,42.2,18.5,180,3550,FEMALE
40
+ Adelie,Dream,37.6,19.3,181,3300,FEMALE
41
+ Adelie,Dream,39.8,19.1,184,4650,MALE
42
+ Adelie,Dream,36.5,18,182,3150,FEMALE
43
+ Adelie,Dream,40.8,18.4,195,3900,MALE
44
+ Adelie,Dream,36,18.5,186,3100,FEMALE
45
+ Adelie,Dream,44.1,19.7,196,4400,MALE
46
+ Adelie,Dream,37,16.9,185,3000,FEMALE
47
+ Adelie,Dream,39.6,18.8,190,4600,MALE
48
+ Adelie,Dream,41.1,19,182,3425,MALE
49
+ Adelie,Dream,37.5,18.9,179,2975,
50
+ Adelie,Dream,36,17.9,190,3450,FEMALE
51
+ Adelie,Dream,42.3,21.2,191,4150,MALE
52
+ Adelie,Biscoe,39.6,17.7,186,3500,FEMALE
53
+ Adelie,Biscoe,40.1,18.9,188,4300,MALE
54
+ Adelie,Biscoe,35,17.9,190,3450,FEMALE
55
+ Adelie,Biscoe,42,19.5,200,4050,MALE
56
+ Adelie,Biscoe,34.5,18.1,187,2900,FEMALE
57
+ Adelie,Biscoe,41.4,18.6,191,3700,MALE
58
+ Adelie,Biscoe,39,17.5,186,3550,FEMALE
59
+ Adelie,Biscoe,40.6,18.8,193,3800,MALE
60
+ Adelie,Biscoe,36.5,16.6,181,2850,FEMALE
61
+ Adelie,Biscoe,37.6,19.1,194,3750,MALE
62
+ Adelie,Biscoe,35.7,16.9,185,3150,FEMALE
63
+ Adelie,Biscoe,41.3,21.1,195,4400,MALE
64
+ Adelie,Biscoe,37.6,17,185,3600,FEMALE
65
+ Adelie,Biscoe,41.1,18.2,192,4050,MALE
66
+ Adelie,Biscoe,36.4,17.1,184,2850,FEMALE
67
+ Adelie,Biscoe,41.6,18,192,3950,MALE
68
+ Adelie,Biscoe,35.5,16.2,195,3350,FEMALE
69
+ Adelie,Biscoe,41.1,19.1,188,4100,MALE
70
+ Adelie,Torgersen,35.9,16.6,190,3050,FEMALE
71
+ Adelie,Torgersen,41.8,19.4,198,4450,MALE
72
+ Adelie,Torgersen,33.5,19,190,3600,FEMALE
73
+ Adelie,Torgersen,39.7,18.4,190,3900,MALE
74
+ Adelie,Torgersen,39.6,17.2,196,3550,FEMALE
75
+ Adelie,Torgersen,45.8,18.9,197,4150,MALE
76
+ Adelie,Torgersen,35.5,17.5,190,3700,FEMALE
77
+ Adelie,Torgersen,42.8,18.5,195,4250,MALE
78
+ Adelie,Torgersen,40.9,16.8,191,3700,FEMALE
79
+ Adelie,Torgersen,37.2,19.4,184,3900,MALE
80
+ Adelie,Torgersen,36.2,16.1,187,3550,FEMALE
81
+ Adelie,Torgersen,42.1,19.1,195,4000,MALE
82
+ Adelie,Torgersen,34.6,17.2,189,3200,FEMALE
83
+ Adelie,Torgersen,42.9,17.6,196,4700,MALE
84
+ Adelie,Torgersen,36.7,18.8,187,3800,FEMALE
85
+ Adelie,Torgersen,35.1,19.4,193,4200,MALE
86
+ Adelie,Dream,37.3,17.8,191,3350,FEMALE
87
+ Adelie,Dream,41.3,20.3,194,3550,MALE
88
+ Adelie,Dream,36.3,19.5,190,3800,MALE
89
+ Adelie,Dream,36.9,18.6,189,3500,FEMALE
90
+ Adelie,Dream,38.3,19.2,189,3950,MALE
91
+ Adelie,Dream,38.9,18.8,190,3600,FEMALE
92
+ Adelie,Dream,35.7,18,202,3550,FEMALE
93
+ Adelie,Dream,41.1,18.1,205,4300,MALE
94
+ Adelie,Dream,34,17.1,185,3400,FEMALE
95
+ Adelie,Dream,39.6,18.1,186,4450,MALE
96
+ Adelie,Dream,36.2,17.3,187,3300,FEMALE
97
+ Adelie,Dream,40.8,18.9,208,4300,MALE
98
+ Adelie,Dream,38.1,18.6,190,3700,FEMALE
99
+ Adelie,Dream,40.3,18.5,196,4350,MALE
100
+ Adelie,Dream,33.1,16.1,178,2900,FEMALE
101
+ Adelie,Dream,43.2,18.5,192,4100,MALE
102
+ Adelie,Biscoe,35,17.9,192,3725,FEMALE
103
+ Adelie,Biscoe,41,20,203,4725,MALE
104
+ Adelie,Biscoe,37.7,16,183,3075,FEMALE
105
+ Adelie,Biscoe,37.8,20,190,4250,MALE
106
+ Adelie,Biscoe,37.9,18.6,193,2925,FEMALE
107
+ Adelie,Biscoe,39.7,18.9,184,3550,MALE
108
+ Adelie,Biscoe,38.6,17.2,199,3750,FEMALE
109
+ Adelie,Biscoe,38.2,20,190,3900,MALE
110
+ Adelie,Biscoe,38.1,17,181,3175,FEMALE
111
+ Adelie,Biscoe,43.2,19,197,4775,MALE
112
+ Adelie,Biscoe,38.1,16.5,198,3825,FEMALE
113
+ Adelie,Biscoe,45.6,20.3,191,4600,MALE
114
+ Adelie,Biscoe,39.7,17.7,193,3200,FEMALE
115
+ Adelie,Biscoe,42.2,19.5,197,4275,MALE
116
+ Adelie,Biscoe,39.6,20.7,191,3900,FEMALE
117
+ Adelie,Biscoe,42.7,18.3,196,4075,MALE
118
+ Adelie,Torgersen,38.6,17,188,2900,FEMALE
119
+ Adelie,Torgersen,37.3,20.5,199,3775,MALE
120
+ Adelie,Torgersen,35.7,17,189,3350,FEMALE
121
+ Adelie,Torgersen,41.1,18.6,189,3325,MALE
122
+ Adelie,Torgersen,36.2,17.2,187,3150,FEMALE
123
+ Adelie,Torgersen,37.7,19.8,198,3500,MALE
124
+ Adelie,Torgersen,40.2,17,176,3450,FEMALE
125
+ Adelie,Torgersen,41.4,18.5,202,3875,MALE
126
+ Adelie,Torgersen,35.2,15.9,186,3050,FEMALE
127
+ Adelie,Torgersen,40.6,19,199,4000,MALE
128
+ Adelie,Torgersen,38.8,17.6,191,3275,FEMALE
129
+ Adelie,Torgersen,41.5,18.3,195,4300,MALE
130
+ Adelie,Torgersen,39,17.1,191,3050,FEMALE
131
+ Adelie,Torgersen,44.1,18,210,4000,MALE
132
+ Adelie,Torgersen,38.5,17.9,190,3325,FEMALE
133
+ Adelie,Torgersen,43.1,19.2,197,3500,MALE
134
+ Adelie,Dream,36.8,18.5,193,3500,FEMALE
135
+ Adelie,Dream,37.5,18.5,199,4475,MALE
136
+ Adelie,Dream,38.1,17.6,187,3425,FEMALE
137
+ Adelie,Dream,41.1,17.5,190,3900,MALE
138
+ Adelie,Dream,35.6,17.5,191,3175,FEMALE
139
+ Adelie,Dream,40.2,20.1,200,3975,MALE
140
+ Adelie,Dream,37,16.5,185,3400,FEMALE
141
+ Adelie,Dream,39.7,17.9,193,4250,MALE
142
+ Adelie,Dream,40.2,17.1,193,3400,FEMALE
143
+ Adelie,Dream,40.6,17.2,187,3475,MALE
144
+ Adelie,Dream,32.1,15.5,188,3050,FEMALE
145
+ Adelie,Dream,40.7,17,190,3725,MALE
146
+ Adelie,Dream,37.3,16.8,192,3000,FEMALE
147
+ Adelie,Dream,39,18.7,185,3650,MALE
148
+ Adelie,Dream,39.2,18.6,190,4250,MALE
149
+ Adelie,Dream,36.6,18.4,184,3475,FEMALE
150
+ Adelie,Dream,36,17.8,195,3450,FEMALE
151
+ Adelie,Dream,37.8,18.1,193,3750,MALE
152
+ Adelie,Dream,36,17.1,187,3700,FEMALE
153
+ Adelie,Dream,41.5,18.5,201,4000,MALE
154
+ Chinstrap,Dream,46.5,17.9,192,3500,FEMALE
155
+ Chinstrap,Dream,50,19.5,196,3900,MALE
156
+ Chinstrap,Dream,51.3,19.2,193,3650,MALE
157
+ Chinstrap,Dream,45.4,18.7,188,3525,FEMALE
158
+ Chinstrap,Dream,52.7,19.8,197,3725,MALE
159
+ Chinstrap,Dream,45.2,17.8,198,3950,FEMALE
160
+ Chinstrap,Dream,46.1,18.2,178,3250,FEMALE
161
+ Chinstrap,Dream,51.3,18.2,197,3750,MALE
162
+ Chinstrap,Dream,46,18.9,195,4150,FEMALE
163
+ Chinstrap,Dream,51.3,19.9,198,3700,MALE
164
+ Chinstrap,Dream,46.6,17.8,193,3800,FEMALE
165
+ Chinstrap,Dream,51.7,20.3,194,3775,MALE
166
+ Chinstrap,Dream,47,17.3,185,3700,FEMALE
167
+ Chinstrap,Dream,52,18.1,201,4050,MALE
168
+ Chinstrap,Dream,45.9,17.1,190,3575,FEMALE
169
+ Chinstrap,Dream,50.5,19.6,201,4050,MALE
170
+ Chinstrap,Dream,50.3,20,197,3300,MALE
171
+ Chinstrap,Dream,58,17.8,181,3700,FEMALE
172
+ Chinstrap,Dream,46.4,18.6,190,3450,FEMALE
173
+ Chinstrap,Dream,49.2,18.2,195,4400,MALE
174
+ Chinstrap,Dream,42.4,17.3,181,3600,FEMALE
175
+ Chinstrap,Dream,48.5,17.5,191,3400,MALE
176
+ Chinstrap,Dream,43.2,16.6,187,2900,FEMALE
177
+ Chinstrap,Dream,50.6,19.4,193,3800,MALE
178
+ Chinstrap,Dream,46.7,17.9,195,3300,FEMALE
179
+ Chinstrap,Dream,52,19,197,4150,MALE
180
+ Chinstrap,Dream,50.5,18.4,200,3400,FEMALE
181
+ Chinstrap,Dream,49.5,19,200,3800,MALE
182
+ Chinstrap,Dream,46.4,17.8,191,3700,FEMALE
183
+ Chinstrap,Dream,52.8,20,205,4550,MALE
184
+ Chinstrap,Dream,40.9,16.6,187,3200,FEMALE
185
+ Chinstrap,Dream,54.2,20.8,201,4300,MALE
186
+ Chinstrap,Dream,42.5,16.7,187,3350,FEMALE
187
+ Chinstrap,Dream,51,18.8,203,4100,MALE
188
+ Chinstrap,Dream,49.7,18.6,195,3600,MALE
189
+ Chinstrap,Dream,47.5,16.8,199,3900,FEMALE
190
+ Chinstrap,Dream,47.6,18.3,195,3850,FEMALE
191
+ Chinstrap,Dream,52,20.7,210,4800,MALE
192
+ Chinstrap,Dream,46.9,16.6,192,2700,FEMALE
193
+ Chinstrap,Dream,53.5,19.9,205,4500,MALE
194
+ Chinstrap,Dream,49,19.5,210,3950,MALE
195
+ Chinstrap,Dream,46.2,17.5,187,3650,FEMALE
196
+ Chinstrap,Dream,50.9,19.1,196,3550,MALE
197
+ Chinstrap,Dream,45.5,17,196,3500,FEMALE
198
+ Chinstrap,Dream,50.9,17.9,196,3675,FEMALE
199
+ Chinstrap,Dream,50.8,18.5,201,4450,MALE
200
+ Chinstrap,Dream,50.1,17.9,190,3400,FEMALE
201
+ Chinstrap,Dream,49,19.6,212,4300,MALE
202
+ Chinstrap,Dream,51.5,18.7,187,3250,MALE
203
+ Chinstrap,Dream,49.8,17.3,198,3675,FEMALE
204
+ Chinstrap,Dream,48.1,16.4,199,3325,FEMALE
205
+ Chinstrap,Dream,51.4,19,201,3950,MALE
206
+ Chinstrap,Dream,45.7,17.3,193,3600,FEMALE
207
+ Chinstrap,Dream,50.7,19.7,203,4050,MALE
208
+ Chinstrap,Dream,42.5,17.3,187,3350,FEMALE
209
+ Chinstrap,Dream,52.2,18.8,197,3450,MALE
210
+ Chinstrap,Dream,45.2,16.6,191,3250,FEMALE
211
+ Chinstrap,Dream,49.3,19.9,203,4050,MALE
212
+ Chinstrap,Dream,50.2,18.8,202,3800,MALE
213
+ Chinstrap,Dream,45.6,19.4,194,3525,FEMALE
214
+ Chinstrap,Dream,51.9,19.5,206,3950,MALE
215
+ Chinstrap,Dream,46.8,16.5,189,3650,FEMALE
216
+ Chinstrap,Dream,45.7,17,195,3650,FEMALE
217
+ Chinstrap,Dream,55.8,19.8,207,4000,MALE
218
+ Chinstrap,Dream,43.5,18.1,202,3400,FEMALE
219
+ Chinstrap,Dream,49.6,18.2,193,3775,MALE
220
+ Chinstrap,Dream,50.8,19,210,4100,MALE
221
+ Chinstrap,Dream,50.2,18.7,198,3775,FEMALE
222
+ Gentoo,Biscoe,46.1,13.2,211,4500,FEMALE
223
+ Gentoo,Biscoe,50,16.3,230,5700,MALE
224
+ Gentoo,Biscoe,48.7,14.1,210,4450,FEMALE
225
+ Gentoo,Biscoe,50,15.2,218,5700,MALE
226
+ Gentoo,Biscoe,47.6,14.5,215,5400,MALE
227
+ Gentoo,Biscoe,46.5,13.5,210,4550,FEMALE
228
+ Gentoo,Biscoe,45.4,14.6,211,4800,FEMALE
229
+ Gentoo,Biscoe,46.7,15.3,219,5200,MALE
230
+ Gentoo,Biscoe,43.3,13.4,209,4400,FEMALE
231
+ Gentoo,Biscoe,46.8,15.4,215,5150,MALE
232
+ Gentoo,Biscoe,40.9,13.7,214,4650,FEMALE
233
+ Gentoo,Biscoe,49,16.1,216,5550,MALE
234
+ Gentoo,Biscoe,45.5,13.7,214,4650,FEMALE
235
+ Gentoo,Biscoe,48.4,14.6,213,5850,MALE
236
+ Gentoo,Biscoe,45.8,14.6,210,4200,FEMALE
237
+ Gentoo,Biscoe,49.3,15.7,217,5850,MALE
238
+ Gentoo,Biscoe,42,13.5,210,4150,FEMALE
239
+ Gentoo,Biscoe,49.2,15.2,221,6300,MALE
240
+ Gentoo,Biscoe,46.2,14.5,209,4800,FEMALE
241
+ Gentoo,Biscoe,48.7,15.1,222,5350,MALE
242
+ Gentoo,Biscoe,50.2,14.3,218,5700,MALE
243
+ Gentoo,Biscoe,45.1,14.5,215,5000,FEMALE
244
+ Gentoo,Biscoe,46.5,14.5,213,4400,FEMALE
245
+ Gentoo,Biscoe,46.3,15.8,215,5050,MALE
246
+ Gentoo,Biscoe,42.9,13.1,215,5000,FEMALE
247
+ Gentoo,Biscoe,46.1,15.1,215,5100,MALE
248
+ Gentoo,Biscoe,44.5,14.3,216,4100,
249
+ Gentoo,Biscoe,47.8,15,215,5650,MALE
250
+ Gentoo,Biscoe,48.2,14.3,210,4600,FEMALE
251
+ Gentoo,Biscoe,50,15.3,220,5550,MALE
252
+ Gentoo,Biscoe,47.3,15.3,222,5250,MALE
253
+ Gentoo,Biscoe,42.8,14.2,209,4700,FEMALE
254
+ Gentoo,Biscoe,45.1,14.5,207,5050,FEMALE
255
+ Gentoo,Biscoe,59.6,17,230,6050,MALE
256
+ Gentoo,Biscoe,49.1,14.8,220,5150,FEMALE
257
+ Gentoo,Biscoe,48.4,16.3,220,5400,MALE
258
+ Gentoo,Biscoe,42.6,13.7,213,4950,FEMALE
259
+ Gentoo,Biscoe,44.4,17.3,219,5250,MALE
260
+ Gentoo,Biscoe,44,13.6,208,4350,FEMALE
261
+ Gentoo,Biscoe,48.7,15.7,208,5350,MALE
262
+ Gentoo,Biscoe,42.7,13.7,208,3950,FEMALE
263
+ Gentoo,Biscoe,49.6,16,225,5700,MALE
264
+ Gentoo,Biscoe,45.3,13.7,210,4300,FEMALE
265
+ Gentoo,Biscoe,49.6,15,216,4750,MALE
266
+ Gentoo,Biscoe,50.5,15.9,222,5550,MALE
267
+ Gentoo,Biscoe,43.6,13.9,217,4900,FEMALE
268
+ Gentoo,Biscoe,45.5,13.9,210,4200,FEMALE
269
+ Gentoo,Biscoe,50.5,15.9,225,5400,MALE
270
+ Gentoo,Biscoe,44.9,13.3,213,5100,FEMALE
271
+ Gentoo,Biscoe,45.2,15.8,215,5300,MALE
272
+ Gentoo,Biscoe,46.6,14.2,210,4850,FEMALE
273
+ Gentoo,Biscoe,48.5,14.1,220,5300,MALE
274
+ Gentoo,Biscoe,45.1,14.4,210,4400,FEMALE
275
+ Gentoo,Biscoe,50.1,15,225,5000,MALE
276
+ Gentoo,Biscoe,46.5,14.4,217,4900,FEMALE
277
+ Gentoo,Biscoe,45,15.4,220,5050,MALE
278
+ Gentoo,Biscoe,43.8,13.9,208,4300,FEMALE
279
+ Gentoo,Biscoe,45.5,15,220,5000,MALE
280
+ Gentoo,Biscoe,43.2,14.5,208,4450,FEMALE
281
+ Gentoo,Biscoe,50.4,15.3,224,5550,MALE
282
+ Gentoo,Biscoe,45.3,13.8,208,4200,FEMALE
283
+ Gentoo,Biscoe,46.2,14.9,221,5300,MALE
284
+ Gentoo,Biscoe,45.7,13.9,214,4400,FEMALE
285
+ Gentoo,Biscoe,54.3,15.7,231,5650,MALE
286
+ Gentoo,Biscoe,45.8,14.2,219,4700,FEMALE
287
+ Gentoo,Biscoe,49.8,16.8,230,5700,MALE
288
+ Gentoo,Biscoe,46.2,14.4,214,4650,
289
+ Gentoo,Biscoe,49.5,16.2,229,5800,MALE
290
+ Gentoo,Biscoe,43.5,14.2,220,4700,FEMALE
291
+ Gentoo,Biscoe,50.7,15,223,5550,MALE
292
+ Gentoo,Biscoe,47.7,15,216,4750,FEMALE
293
+ Gentoo,Biscoe,46.4,15.6,221,5000,MALE
294
+ Gentoo,Biscoe,48.2,15.6,221,5100,MALE
295
+ Gentoo,Biscoe,46.5,14.8,217,5200,FEMALE
296
+ Gentoo,Biscoe,46.4,15,216,4700,FEMALE
297
+ Gentoo,Biscoe,48.6,16,230,5800,MALE
298
+ Gentoo,Biscoe,47.5,14.2,209,4600,FEMALE
299
+ Gentoo,Biscoe,51.1,16.3,220,6000,MALE
300
+ Gentoo,Biscoe,45.2,13.8,215,4750,FEMALE
301
+ Gentoo,Biscoe,45.2,16.4,223,5950,MALE
302
+ Gentoo,Biscoe,49.1,14.5,212,4625,FEMALE
303
+ Gentoo,Biscoe,52.5,15.6,221,5450,MALE
304
+ Gentoo,Biscoe,47.4,14.6,212,4725,FEMALE
305
+ Gentoo,Biscoe,50,15.9,224,5350,MALE
306
+ Gentoo,Biscoe,44.9,13.8,212,4750,FEMALE
307
+ Gentoo,Biscoe,50.8,17.3,228,5600,MALE
308
+ Gentoo,Biscoe,43.4,14.4,218,4600,FEMALE
309
+ Gentoo,Biscoe,51.3,14.2,218,5300,MALE
310
+ Gentoo,Biscoe,47.5,14,212,4875,FEMALE
311
+ Gentoo,Biscoe,52.1,17,230,5550,MALE
312
+ Gentoo,Biscoe,47.5,15,218,4950,FEMALE
313
+ Gentoo,Biscoe,52.2,17.1,228,5400,MALE
314
+ Gentoo,Biscoe,45.5,14.5,212,4750,FEMALE
315
+ Gentoo,Biscoe,49.5,16.1,224,5650,MALE
316
+ Gentoo,Biscoe,44.5,14.7,214,4850,FEMALE
317
+ Gentoo,Biscoe,50.8,15.7,226,5200,MALE
318
+ Gentoo,Biscoe,49.4,15.8,216,4925,MALE
319
+ Gentoo,Biscoe,46.9,14.6,222,4875,FEMALE
320
+ Gentoo,Biscoe,48.4,14.4,203,4625,FEMALE
321
+ Gentoo,Biscoe,51.1,16.5,225,5250,MALE
322
+ Gentoo,Biscoe,48.5,15,219,4850,FEMALE
323
+ Gentoo,Biscoe,55.9,17,228,5600,MALE
324
+ Gentoo,Biscoe,47.2,15.5,215,4975,FEMALE
325
+ Gentoo,Biscoe,49.1,15,228,5500,MALE
326
+ Gentoo,Biscoe,47.3,13.8,216,4725,
327
+ Gentoo,Biscoe,46.8,16.1,215,5500,MALE
328
+ Gentoo,Biscoe,41.7,14.7,210,4700,FEMALE
329
+ Gentoo,Biscoe,53.4,15.8,219,5500,MALE
330
+ Gentoo,Biscoe,43.3,14,208,4575,FEMALE
331
+ Gentoo,Biscoe,48.1,15.1,209,5500,MALE
332
+ Gentoo,Biscoe,50.5,15.2,216,5000,FEMALE
333
+ Gentoo,Biscoe,49.8,15.9,229,5950,MALE
334
+ Gentoo,Biscoe,43.5,15.2,213,4650,FEMALE
335
+ Gentoo,Biscoe,51.5,16.3,230,5500,MALE
336
+ Gentoo,Biscoe,46.2,14.1,217,4375,FEMALE
337
+ Gentoo,Biscoe,55.1,16,230,5850,MALE
338
+ Gentoo,Biscoe,44.5,15.7,217,4875,
339
+ Gentoo,Biscoe,48.8,16.2,222,6000,MALE
340
+ Gentoo,Biscoe,47.2,13.7,214,4925,FEMALE
341
+ Gentoo,Biscoe,,,,,
342
+ Gentoo,Biscoe,46.8,14.3,215,4850,FEMALE
343
+ Gentoo,Biscoe,50.4,15.7,222,5750,MALE
344
+ Gentoo,Biscoe,45.2,14.8,212,5200,FEMALE
345
+ Gentoo,Biscoe,49.9,16.1,213,5400,MALE
data/seaborn/planets.csv ADDED
@@ -0,0 +1,1036 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ method,number,orbital_period,mass,distance,year
2
+ Radial Velocity,1,269.3,7.1,77.4,2006
3
+ Radial Velocity,1,874.774,2.21,56.95,2008
4
+ Radial Velocity,1,763.0,2.6,19.84,2011
5
+ Radial Velocity,1,326.03,19.4,110.62,2007
6
+ Radial Velocity,1,516.22,10.5,119.47,2009
7
+ Radial Velocity,1,185.84,4.8,76.39,2008
8
+ Radial Velocity,1,1773.4,4.64,18.15,2002
9
+ Radial Velocity,1,798.5,,21.41,1996
10
+ Radial Velocity,1,993.3,10.3,73.1,2008
11
+ Radial Velocity,2,452.8,1.99,74.79,2010
12
+ Radial Velocity,2,883.0,0.86,74.79,2010
13
+ Radial Velocity,1,335.1,9.88,39.43,2009
14
+ Radial Velocity,1,479.1,3.88,97.28,2008
15
+ Radial Velocity,3,1078.0,2.53,14.08,1996
16
+ Radial Velocity,3,2391.0,0.54,14.08,2001
17
+ Radial Velocity,3,14002.0,1.64,14.08,2009
18
+ Radial Velocity,1,4.230785,0.472,15.36,1995
19
+ Radial Velocity,5,14.651,0.8,12.53,1996
20
+ Radial Velocity,5,44.38,0.165,12.53,2004
21
+ Radial Velocity,5,4909.0,3.53,12.53,2002
22
+ Radial Velocity,5,0.73654,,12.53,2011
23
+ Radial Velocity,5,261.2,0.172,12.53,2007
24
+ Radial Velocity,3,4.215,0.016,8.52,2009
25
+ Radial Velocity,3,38.021,0.057,8.52,2009
26
+ Radial Velocity,3,123.01,0.072,8.52,2009
27
+ Radial Velocity,1,116.6884,,18.11,1996
28
+ Radial Velocity,1,691.9,,81.5,2012
29
+ Radial Velocity,1,952.7,5.3,97.18,2008
30
+ Radial Velocity,1,181.4,3.2,45.52,2013
31
+ Imaging,1,,,45.52,2005
32
+ Imaging,1,,,165.0,2007
33
+ Imaging,1,,,140.0,2004
34
+ Eclipse Timing Variations,1,10220.0,6.05,,2009
35
+ Imaging,1,,,,2008
36
+ Imaging,1,,,145.0,2013
37
+ Imaging,1,,,139.0,2004
38
+ Imaging,1,,,18.39,2006
39
+ Eclipse Timing Variations,2,5767.0,,130.72,2008
40
+ Eclipse Timing Variations,2,3321.0,,130.72,2008
41
+ Eclipse Timing Variations,2,5573.55,,500.0,2010
42
+ Eclipse Timing Variations,2,2883.5,,500.0,2010
43
+ Eclipse Timing Variations,1,2900.0,,,2011
44
+ Eclipse Timing Variations,1,4343.5,4.2,,2012
45
+ Eclipse Timing Variations,2,5840.0,,,2011
46
+ Eclipse Timing Variations,2,1916.25,,,2011
47
+ Radial Velocity,1,380.8,1.8,20.21,2010
48
+ Radial Velocity,1,3.2357,0.0036,1.35,2012
49
+ Imaging,1,6000.0,,19.28,2008
50
+ Radial Velocity,1,2502.0,1.55,3.22,2000
51
+ Radial Velocity,1,417.9,,70.42,2012
52
+ Radial Velocity,1,594.9,7.6,47.53,2006
53
+ Radial Velocity,1,428.5,8.78,38.52,2009
54
+ Radial Velocity,1,903.3,1.85,13.79,2003
55
+ Radial Velocity,1,1251.0,,31.12,2007
56
+ Imaging,1,,,52.03,2012
57
+ Radial Velocity,1,136.75,2.8,62.66,2007
58
+ Radial Velocity,2,530.32,,46.84,2012
59
+ Radial Velocity,2,3186.0,,46.84,2012
60
+ Radial Velocity,1,277.02,1.7,80.64,2013
61
+ Radial Velocity,1,187.83,,84.03,2012
62
+ Radial Velocity,1,1630.0,,56.31,2012
63
+ Radial Velocity,1,39.845,1.04,17.43,1997
64
+ Radial Velocity,1,3.3135,3.9,15.6,1996
65
+ Radial Velocity,1,305.5,20.6,92.51,2013
66
+ Radial Velocity,4,4.617033,0.6876,13.47,1996
67
+ Radial Velocity,4,241.258,1.981,13.47,1999
68
+ Radial Velocity,4,1276.46,4.132,13.47,1999
69
+ Radial Velocity,4,3848.86,1.059,13.47,2010
70
+ Imaging,1,318280.0,,7.69,2008
71
+ Imaging,1,,,145.0,2008
72
+ Imaging,1,,,36.0,2013
73
+ Imaging,1,,,140.0,2010
74
+ Imaging,1,4639.15,,12.21,2009
75
+ Imaging,1,,,52.4,2004
76
+ Imaging,1,7336.5,,25.0,2009
77
+ Imaging,1,8679.7,,26.67,2009
78
+ Radial Velocity,1,655.6,5.1,37.54,2008
79
+ Radial Velocity,1,714.3,10.6,,2007
80
+ Radial Velocity,1,3.48777,,80.0,2000
81
+ Radial Velocity,2,5.6,0.045,42.09,2009
82
+ Radial Velocity,2,237.6,0.33,42.09,2009
83
+ Radial Velocity,2,3.8728,0.027,20.1,2013
84
+ Radial Velocity,2,125.94,0.17,20.1,2013
85
+ Radial Velocity,1,268.94,1.47,50.03,2009
86
+ Radial Velocity,1,137.48,1.11,175.44,2013
87
+ Radial Velocity,2,379.63,21.42,,2009
88
+ Radial Velocity,2,621.99,12.47,,2009
89
+ Radial Velocity,1,578.2,,,2012
90
+ Radial Velocity,1,392.6,0.91,,2011
91
+ Imaging,1,10037.5,,23.1,2011
92
+ Imaging,1,,,,2006
93
+ Transit,1,1.5089557,,,2008
94
+ Transit,1,1.7429935,,200.0,2008
95
+ Transit,1,4.2568,,680.0,2008
96
+ Transit,1,9.20205,,,2008
97
+ Transit,1,4.0378962,,,2009
98
+ Transit,1,8.886593,,,2009
99
+ Transit,2,0.853585,,150.0,2009
100
+ Radial Velocity,2,3.698,,150.0,2009
101
+ Transit,1,6.21229,,380.0,2010
102
+ Transit,1,95.2738,,460.0,2009
103
+ Transit,1,13.2406,,345.0,2010
104
+ Transit,1,2.99433,,560.0,2010
105
+ Transit,1,2.828042,,1150.0,2010
106
+ Transit,1,4.03519,,1060.0,2010
107
+ Transit,1,1.51214,,1340.0,2010
108
+ Transit,1,5.35227,,840.0,2011
109
+ Transit,1,3.7681,,920.0,2011
110
+ Transit,1,1.9000693,,870.0,2011
111
+ Transit,1,3.89713,,770.0,2011
112
+ Transit,1,9.24285,,1230.0,2011
113
+ Transit,1,3.6313,,600.0,2011
114
+ Transit,1,3.57532,,,2014
115
+ Astrometry,1,246.36,,20.77,2013
116
+ Radial Velocity,1,15.76491,3.91,10.91,1999
117
+ Radial Velocity,3,8.631,0.035,14.97,2013
118
+ Radial Velocity,3,25.6,0.024,14.97,2013
119
+ Radial Velocity,3,603.0,0.079,14.97,2013
120
+ Radial Velocity,1,2288.0,0.82,12.12,2009
121
+ Radial Velocity,2,692.0,1.894,15.1,2007
122
+ Radial Velocity,2,7100.0,1.6,15.1,2011
123
+ Radial Velocity,1,4100.0,2.3,20.03,2013
124
+ Radial Velocity,1,7.3709,0.018,9.04,2011
125
+ Radial Velocity,1,2.64385,,10.23,2004
126
+ Imaging,1,,,17.95,2013
127
+ Radial Velocity,4,5.36874,0.049,6.27,2005
128
+ Radial Velocity,4,12.9292,0.017,6.27,2005
129
+ Radial Velocity,4,66.8,0.022,6.27,2005
130
+ Radial Velocity,4,3.14942,0.006,6.27,2005
131
+ Radial Velocity,1,598.3,0.328,10.32,2009
132
+ Radial Velocity,6,7.2004,0.018,6.8,2011
133
+ Radial Velocity,6,28.14,0.012,6.8,2011
134
+ Radial Velocity,6,91.61,0.016,6.8,2013
135
+ Radial Velocity,6,62.24,0.008,6.8,2013
136
+ Radial Velocity,6,39.026,0.008,6.8,2013
137
+ Radial Velocity,6,256.2,0.014,6.8,2013
138
+ Radial Velocity,1,4.6938,0.035,4.54,2007
139
+ Radial Velocity,3,1050.3,4.95,16.13,2010
140
+ Radial Velocity,3,3.6,0.014,16.13,2012
141
+ Radial Velocity,3,35.37,0.036,16.13,2012
142
+ Radial Velocity,1,3416.0,0.64,4.94,2008
143
+ Radial Velocity,1,1845.0,0.91,8.77,2006
144
+ Radial Velocity,4,61.1166,2.2756,4.7,1998
145
+ Radial Velocity,4,30.0881,0.7142,4.7,2000
146
+ Radial Velocity,4,1.93778,0.021,4.7,2005
147
+ Radial Velocity,4,124.26,0.046,4.7,2010
148
+ Transit,1,1.58040482,,,2009
149
+ Radial Velocity,1,133.71,3.37,17.62,2000
150
+ Radial Velocity,1,3.33714,,25.2,2012
151
+ Radial Velocity,1,2.64561,0.022,19.8,2010
152
+ Imaging,1,,,145.0,2010
153
+ Transit,1,4.4652934,,139.0,2006
154
+ Transit,1,5.6334729,,135.32,2007
155
+ Transit,1,2.899736,,138.0,2007
156
+ Transit,1,3.056536,,314.0,2007
157
+ Transit,1,2.788491,,342.0,2007
158
+ Transit,1,3.852985,,261.0,2007
159
+ Transit,1,3.0763776,,230.0,2008
160
+ Transit,1,3.92289,,480.0,2008
161
+ Transit,1,3.2130598,,142.5,2009
162
+ Transit,2,2.91626,,214.0,2009
163
+ Radial Velocity,2,428.5,15.2,214.0,2009
164
+ Transit,1,4.627669,,205.0,2010
165
+ Transit,1,10.863502,,190.0,2010
166
+ Transit,1,2.77596,,235.0,2010
167
+ Transit,2,10.338523,,90.0,2010
168
+ Radial Velocity,2,5584.0,3.4,90.0,2010
169
+ Transit,1,5.508023,,166.0,2010
170
+ Transit,1,4.008778,,215.0,2010
171
+ Transit,1,2.875317,,70.0,2010
172
+ Transit,1,4.124481,,254.0,2010
173
+ Transit,1,3.21222,,82.0,2010
174
+ Transit,1,1.212884,,393.0,2010
175
+ Transit,1,3.35524,,396.0,2010
176
+ Transit,1,3.652836,,297.0,2010
177
+ Transit,1,4.234516,,134.0,2010
178
+ Transit,1,3.039577,,204.0,2011
179
+ Transit,1,3.257215,,395.0,2011
180
+ Transit,1,5.723186,,322.0,2011
181
+ Transit,1,2.810595,,193.0,2011
182
+ Transit,2,5.005425,,354.0,2011
183
+ Radial Velocity,2,1022.0,3.4,354.0,2011
184
+ Transit,1,2.150008,,283.0,2011
185
+ Transit,1,3.474474,,387.0,2011
186
+ Transit,1,5.452654,,257.0,2011
187
+ Transit,1,3.646706,,535.0,2011
188
+ Transit,1,1.327347,,317.0,2011
189
+ Transit,1,2.797436,,411.0,2011
190
+ Transit,1,4.640382,,249.0,2012
191
+ Transit,1,3.54387,,642.0,2012
192
+ Transit,1,4.457243,,501.0,2012
193
+ Transit,1,2.694047,,344.0,2012
194
+ Transit,1,4.641878,,447.0,2012
195
+ Transit,1,3.332687,,542.0,2012
196
+ Transit,1,2.691548,,322.0,2014
197
+ Transit,1,3.446459,,303.0,2012
198
+ Transit,1,1.354133,,360.0,2013
199
+ Transit,1,3.547851,,453.0,2013
200
+ Radial Velocity,2,349.7,1.25,25.64,2001
201
+ Radial Velocity,2,6005.0,5.3,25.64,2012
202
+ Radial Velocity,2,5.7727,0.024,23.44,2009
203
+ Radial Velocity,2,13.505,0.0186,23.44,2011
204
+ Radial Velocity,1,431.8,3.1,167.5,2011
205
+ Radial Velocity,1,533.0,6.1,7.01,2010
206
+ Radial Velocity,1,1183.0,4.9,89.85,2002
207
+ Radial Velocity,1,3.4442,0.48,53.71,2005
208
+ Radial Velocity,1,311.6,1.6,115.21,2013
209
+ Radial Velocity,1,62.218,0.229,11.11,2003
210
+ Radial Velocity,1,526.62,1.56,44.05,2007
211
+ Radial Velocity,1,829.0,0.8,32.7,2001
212
+ Radial Velocity,1,15.609,0.0405,21.85,2005
213
+ Radial Velocity,1,431.88,2.07,77.82,2001
214
+ Radial Velocity,1,356.0,2.3,131.41,2009
215
+ Radial Velocity,2,360.2,2.37,56.5,2012
216
+ Radial Velocity,2,2732.0,2.37,56.5,2012
217
+ Radial Velocity,1,675.0,1.94,100.0,2007
218
+ Radial Velocity,1,777.0,1.96,53.28,2009
219
+ Radial Velocity,1,792.6,,58.17,2012
220
+ Radial Velocity,1,177.11,7.6,150.6,2011
221
+ Radial Velocity,1,22.09,0.48,40.32,2003
222
+ Radial Velocity,1,2496.0,1.65,55.01,2009
223
+ Radial Velocity,1,615.0,0.29,35.88,2011
224
+ Radial Velocity,2,1275.0,1.11,38.52,2011
225
+ Radial Velocity,2,4046.0,2.0,38.52,2011
226
+ Radial Velocity,1,5.3978,0.029,16.82,2008
227
+ Radial Velocity,1,1313.0,0.63,56.34,2010
228
+ Radial Velocity,1,227.0,1.8,44.15,2002
229
+ Radial Velocity,1,1634.0,14.2,38.26,2009
230
+ Radial Velocity,2,30.052,0.7,52.85,2009
231
+ Radial Velocity,2,192.9,1.82,52.85,2009
232
+ Radial Velocity,6,5.75962,0.041,39.39,2010
233
+ Radial Velocity,6,16.3567,0.038,39.39,2010
234
+ Radial Velocity,6,49.747,0.08,39.39,2010
235
+ Radial Velocity,6,122.72,0.074,39.39,2010
236
+ Radial Velocity,6,602.0,0.067,39.39,2010
237
+ Radial Velocity,6,2248.0,0.205,39.39,2010
238
+ Radial Velocity,1,989.2,0.94,17.35,2006
239
+ Radial Velocity,1,1075.2,6.21,32.56,1999
240
+ Radial Velocity,2,1270.2,3.44,53.82,2007
241
+ Radial Velocity,2,170.455,0.82,53.82,2008
242
+ Radial Velocity,1,711.0,6.54,66.49,2005
243
+ Radial Velocity,2,1945.0,0.622,33.98,2005
244
+ Radial Velocity,2,37.91,0.0788,33.98,2008
245
+ Radial Velocity,2,262.709,2.3,37.16,2000
246
+ Radial Velocity,2,1708.0,1.92,37.16,2002
247
+ Radial Velocity,1,471.6,14.0,300.3,2005
248
+ Radial Velocity,2,14.182,0.0325,28.6,2011
249
+ Radial Velocity,2,53.832,0.036,28.6,2011
250
+ Radial Velocity,2,19.382,0.865,66.89,2013
251
+ Radial Velocity,2,931.0,5.13,66.89,2013
252
+ Radial Velocity,1,4218.0,1.88,45.52,2009
253
+ Radial Velocity,1,75.523,0.26,35.91,2000
254
+ Radial Velocity,1,17.24,0.0696,25.54,2008
255
+ Radial Velocity,1,990.0,4.4,59.84,2009
256
+ Radial Velocity,1,465.1,14.3,50.18,2009
257
+ Radial Velocity,1,359.9,4.6,,2007
258
+ Radial Velocity,1,21.21663,,78.25,2007
259
+ Radial Velocity,1,772.0,2.7,127.88,2011
260
+ Radial Velocity,1,466.2,1.37,22.38,2003
261
+ Radial Velocity,2,11.849,0.0378,43.08,2011
262
+ Radial Velocity,2,33.823,0.0422,43.08,2011
263
+ Radial Velocity,1,500.0,1.07,27.13,2002
264
+ Radial Velocity,3,18.315,0.0085,6.06,2011
265
+ Radial Velocity,3,40.114,0.00755,6.06,2011
266
+ Radial Velocity,3,90.309,0.0151,6.06,2011
267
+ Radial Velocity,2,29.15,0.0379,35.89,2011
268
+ Radial Velocity,2,85.131,0.0496,35.89,2011
269
+ Radial Velocity,1,591.9,1.9,36.02,2006
270
+ Radial Velocity,1,380.85,1.99,44.5,2008
271
+ Radial Velocity,2,22.656,0.0322,32.31,2011
272
+ Radial Velocity,2,53.881,0.06472,32.31,2011
273
+ Radial Velocity,1,1214.0,1.5,89.13,2006
274
+ Radial Velocity,1,738.459,2.61,34.6,2001
275
+ Radial Velocity,1,528.07,13.65,31.79,2011
276
+ Radial Velocity,1,1561.0,7.71,51.97,2003
277
+ Radial Velocity,1,3668.0,4.01,46.51,2006
278
+ Radial Velocity,1,1845.0,0.95,56.05,2010
279
+ Radial Velocity,1,423.841,1.28,18.24,2000
280
+ Radial Velocity,1,2208.0,1.45,44.54,2012
281
+ Radial Velocity,1,17.991,0.62,42.37,2005
282
+ Radial Velocity,1,1117.0,1.16,56.18,2010
283
+ Radial Velocity,1,385.9,5.59,39.56,2001
284
+ Radial Velocity,1,387.1,1.7,168.92,2011
285
+ Radial Velocity,1,2819.654,9.17,54.71,2002
286
+ Radial Velocity,1,1159.2,1.373,26.5,2009
287
+ Radial Velocity,1,912.0,1.8,121.07,2011
288
+ Radial Velocity,1,466.0,0.5,53.82,2010
289
+ Radial Velocity,3,16.546,0.0363,38.01,2011
290
+ Radial Velocity,3,51.284,0.0498,38.01,2011
291
+ Radial Velocity,3,274.49,0.0519,38.01,2011
292
+ Radial Velocity,1,326.6,1.3,136.8,2011
293
+ Radial Velocity,1,18.179,0.33,86.88,2006
294
+ Radial Velocity,1,157.54,3.04,117.37,2009
295
+ Radial Velocity,1,1049.0,0.79,45.01,2009
296
+ Radial Velocity,1,388.0,9.1,20.98,2005
297
+ Radial Velocity,1,363.2,,37.78,2010
298
+ Radial Velocity,3,154.46,0.61,33.24,2002
299
+ Radial Velocity,3,2295.0,0.683,33.24,2002
300
+ Radial Velocity,3,843.6,0.624,33.24,2005
301
+ Radial Velocity,1,2063.818,10.35,18.21,2001
302
+ Radial Velocity,2,55.0,2.3,42.88,2004
303
+ Radial Velocity,2,2720.0,3.366,42.88,2012
304
+ Radial Velocity,3,5.6363,0.0117,25.59,2011
305
+ Radial Velocity,3,14.025,0.0187,25.59,2011
306
+ Radial Velocity,3,33.941,0.0162,25.59,2011
307
+ Radial Velocity,2,14.3098,0.839,42.43,2000
308
+ Radial Velocity,2,2140.2,13.38,42.43,2000
309
+ Radial Velocity,1,696.3,10.7,99.4,2009
310
+ Radial Velocity,1,407.15,0.0961,15.56,2011
311
+ Radial Velocity,6,4.3123,0.0126,12.83,2008
312
+ Radial Velocity,6,9.6184,0.0208,12.83,2008
313
+ Radial Velocity,6,20.432,0.0299,12.83,2008
314
+ Radial Velocity,6,34.62,0.011,12.83,2012
315
+ Radial Velocity,6,51.76,0.0164,12.83,2012
316
+ Radial Velocity,6,197.8,0.0223,12.83,2012
317
+ Radial Velocity,1,264.15,4.01,33.33,2002
318
+ Radial Velocity,1,963.0,2.54,43.03,2004
319
+ Radial Velocity,1,1.3283,18.37,43.03,2003
320
+ Radial Velocity,2,18.357,0.039,52.03,2013
321
+ Radial Velocity,2,25.648,0.027,52.03,2013
322
+ Radial Velocity,1,327.8,0.6,54.94,2010
323
+ Radial Velocity,1,2371.0,25.0,37.05,2008
324
+ Radial Velocity,1,36.96,2.49,93.2,2007
325
+ Radial Velocity,1,472.0,0.58,50.43,2010
326
+ Radial Velocity,1,5.8872,0.04,22.04,2011
327
+ Radial Velocity,2,226.93,0.1872,32.58,2008
328
+ Radial Velocity,2,342.85,0.6579,32.58,2008
329
+ Radial Velocity,1,890.76,1.79,48.95,2004
330
+ Radial Velocity,1,43.6,0.47,36.14,2008
331
+ Radial Velocity,1,3.024,0.249,33.41,2000
332
+ Radial Velocity,2,4.0845,0.07167000000000001,37.84,2008
333
+ Radial Velocity,2,1353.6,0.35061,37.84,2008
334
+ Radial Velocity,2,430.0,5.0,121.36,2002
335
+ Radial Velocity,2,2500.0,7.0,121.36,2008
336
+ Radial Velocity,1,700.0,1.16,87.41,2008
337
+ Radial Velocity,1,4.9437,0.115,40.73,2002
338
+ Radial Velocity,1,2582.7,1.71,47.26,2005
339
+ Radial Velocity,1,1279.0,4.9,31.03,2002
340
+ Radial Velocity,2,14.07,0.0413,34.07,2011
341
+ Radial Velocity,2,95.415,0.0565,34.07,2011
342
+ Radial Velocity,1,118.96,1.13,28.07,2000
343
+ Radial Velocity,1,303.0,5.25,92.51,2003
344
+ Radial Velocity,2,201.83,3.1548,25.7,2008
345
+ Radial Velocity,2,607.06,7.4634,25.7,2008
346
+ Radial Velocity,1,2.817822,0.38,35.8,2005
347
+ Radial Velocity,1,589.64,2.9,10.34,2006
348
+ Radial Velocity,1,358.0,0.64,32.62,2009
349
+ Radial Velocity,2,572.4,1.26,35.59,2003
350
+ Radial Velocity,2,152.6,0.17,35.59,2011
351
+ Radial Velocity,1,480.5,6.0,80.06,2012
352
+ Radial Velocity,1,1973.0,2.82,55.04,2005
353
+ Radial Velocity,1,6.276,1.9,58.82,2001
354
+ Radial Velocity,3,8.667,0.033,12.58,2006
355
+ Radial Velocity,3,31.56,0.038,12.58,2006
356
+ Radial Velocity,3,197.0,0.058,12.58,2006
357
+ Radial Velocity,1,851.8,6.1,,2007
358
+ Radial Velocity,1,2231.0,2.0,28.76,2003
359
+ Radial Velocity,1,3383.0,3.15,51.36,2002
360
+ Radial Velocity,1,1260.0,3.06,53.05,2008
361
+ Radial Velocity,1,2.54858,1.87,36.52,2003
362
+ Radial Velocity,2,188.9,2.25,94.61,2002
363
+ Radial Velocity,2,379.1,2.25,94.61,2005
364
+ Radial Velocity,1,1800.0,1.15,96.99,2008
365
+ Radial Velocity,3,51.645,1.8,64.56,2003
366
+ Radial Velocity,3,2473.0,8.06,64.56,2003
367
+ Radial Velocity,3,346.6,0.396,64.56,2007
368
+ Radial Velocity,1,3.51,0.42,28.94,1999
369
+ Radial Velocity,1,418.2,2.51,80.58,2007
370
+ Radial Velocity,1,3.971,0.197,59.7,2002
371
+ Radial Velocity,1,5.7361,,41.27,2012
372
+ Radial Velocity,1,1966.1,1.34,48.64,2011
373
+ Radial Velocity,1,111.4357,,29.04,2001
374
+ Radial Velocity,1,1001.7,6.86,32.56,2005
375
+ Radial Velocity,1,184.02,2.7,88.26,2007
376
+ Radial Velocity,2,441.47,,27.46,2003
377
+ Radial Velocity,2,220.078,,27.46,2003
378
+ Radial Velocity,1,705.0,1.3,112.23,2011
379
+ Radial Velocity,1,2.985625,0.4,43.53,2002
380
+ Radial Velocity,1,788.0,0.132,33.96,2009
381
+ Radial Velocity,1,58.43,0.01133,11.15,2011
382
+ Radial Velocity,1,2.1375,1.5,91.16,2006
383
+ Radial Velocity,1,1695.0,0.92,42.48,2009
384
+ Radial Velocity,1,1475.0,7.0,72.57,2009
385
+ Radial Velocity,1,2754.0,1.78,18.06,2009
386
+ Radial Velocity,1,3.416,0.22,74.46,2004
387
+ Radial Velocity,1,2157.0,1.78,30.88,2009
388
+ Radial Velocity,1,256.78,8.44,38.99,1999
389
+ Radial Velocity,1,49.77,0.057,22.09,2009
390
+ Radial Velocity,1,325.81,3.86,32.32,2000
391
+ Radial Velocity,1,143.58,0.37,28.9,2005
392
+ Radial Velocity,2,13.186,0.0263,42.52,2011
393
+ Radial Velocity,2,46.025,0.0318,42.52,2011
394
+ Imaging,1,,,91.57,2013
395
+ Radial Velocity,1,507.0,1.2,149.03,2009
396
+ Radial Velocity,1,361.1,0.9,132.8,2011
397
+ Radial Velocity,1,498.9,0.68,84.03,2009
398
+ Radial Velocity,1,647.3,4.0,221.24,2011
399
+ Radial Velocity,2,8.1256,0.0284,26.21,2011
400
+ Radial Velocity,2,103.49,0.04,26.21,2011
401
+ Radial Velocity,1,9.494,0.026,21.3,2010
402
+ Radial Velocity,1,436.9,1.8,150.38,2011
403
+ Radial Velocity,1,4951.0,6.8,42.77,2012
404
+ Radial Velocity,1,439.3,0.502,60.46,2005
405
+ Radial Velocity,2,17.054,0.087,17.99,2004
406
+ Radial Velocity,2,4970.0,0.36,17.99,2010
407
+ Radial Velocity,1,868.0,1.4,130.89,2011
408
+ Radial Velocity,1,157.57,1.7,140.85,2011
409
+ Radial Velocity,1,383.7,1.16,52.8,2007
410
+ Radial Velocity,1,70.46,0.3,30.5,2005
411
+ Radial Velocity,1,20.8133,0.172,42.0,2005
412
+ Radial Velocity,1,4.113775,0.45,28.98,2006
413
+ Radial Velocity,2,127.58,5.9,164.2,2008
414
+ Radial Velocity,2,520.0,2.6,164.2,2008
415
+ Radial Velocity,1,122.1,0.05,9.24,2010
416
+ Radial Velocity,1,778.1,5.9,138.5,2011
417
+ Radial Velocity,1,6.495,0.96,121.07,2010
418
+ Radial Velocity,1,47.84,0.098,49.33,2009
419
+ Radial Velocity,1,5.8881,0.367,53.08,2013
420
+ Radial Velocity,1,55.806,0.186,20.82,2009
421
+ Radial Velocity,1,199.505,8.3,102.04,2003
422
+ Radial Velocity,1,1531.0,6.92,37.44,2002
423
+ Radial Velocity,1,2890.0,11.0,87.87,2011
424
+ Radial Velocity,1,3630.0,9.61,36.36,2012
425
+ Imaging,1,,,91.83,2013
426
+ Radial Velocity,1,48.056,0.21,51.26,2005
427
+ Radial Velocity,1,10.8985,0.261,38.56,2002
428
+ Radial Velocity,1,443.4,2.6,138.5,2011
429
+ Radial Velocity,2,395.8,1.29,68.54,2002
430
+ Radial Velocity,2,1624.0,0.99,68.54,2005
431
+ Radial Velocity,1,68.27,0.77,65.62,2010
432
+ Radial Velocity,2,7.8543,0.054,56.92,2013
433
+ Radial Velocity,2,30.93,0.076,56.92,2013
434
+ Radial Velocity,1,5.24,0.28,59.03,2005
435
+ Radial Velocity,1,835.477,11.09,97.66,2009
436
+ Radial Velocity,1,1143.0,6.8,28.88,2003
437
+ Radial Velocity,1,324.0,2.83,37.42,2013
438
+ Radial Velocity,2,263.3,0.27,15.71,2010
439
+ Radial Velocity,2,1657.0,0.71,15.71,2010
440
+ Radial Velocity,2,937.7,1.24,28.04,2003
441
+ Radial Velocity,2,1046.0,,28.04,2011
442
+ Radial Velocity,1,3827.0,0.48,20.48,2014
443
+ Radial Velocity,1,83.888,11.68,40.57,1989
444
+ Radial Velocity,1,493.7,1.1,20.43,2001
445
+ Radial Velocity,1,1114.0,0.95,35.0,2002
446
+ Radial Velocity,1,670.0,2.1,110.62,2011
447
+ Radial Velocity,1,2597.0,1.88,33.01,2004
448
+ Radial Velocity,1,25.827,0.178,38.02,2004
449
+ Radial Velocity,1,6.1335,2.13,88.57,2005
450
+ Radial Velocity,1,2082.0,4.5,97.66,2013
451
+ Radial Velocity,1,63.33,1.22,44.37,2003
452
+ Radial Velocity,1,344.95,3.71,133.16,2003
453
+ Radial Velocity,3,559.4,3.0,52.83,2007
454
+ Radial Velocity,3,4.1547,0.058,52.83,2009
455
+ Radial Velocity,3,3008.0,7.2,52.83,2009
456
+ Radial Velocity,1,9.6737,0.041,27.45,2009
457
+ Radial Velocity,1,1244.0,0.38,68.35,2009
458
+ Radial Velocity,1,948.12,0.224,38.05,2011
459
+ Radial Velocity,2,454.2,1.45,16.57,2002
460
+ Radial Velocity,2,923.8,3.24,16.57,2005
461
+ Radial Velocity,1,1840.0,1.6,67.61,2009
462
+ Radial Velocity,1,10.7085,1.04,29.76,1999
463
+ Radial Velocity,1,883.0,2.2,121.36,2011
464
+ Radial Velocity,1,1951.0,18.15,57.21,2008
465
+ Radial Velocity,1,974.0,5.61,70.97,2007
466
+ Radial Velocity,1,1544.0,1.49,98.52,2011
467
+ Radial Velocity,2,3.27,0.0351,24.15,2011
468
+ Radial Velocity,2,1160.9,0.1507,24.15,2011
469
+ Radial Velocity,2,258.19,1.59,25.65,1999
470
+ Radial Velocity,2,5000.0,0.82,25.65,2009
471
+ Radial Velocity,3,12.083,0.0292,26.91,2011
472
+ Radial Velocity,3,59.519,0.0382,26.91,2011
473
+ Radial Velocity,3,459.26,0.121,26.91,2011
474
+ Radial Velocity,1,464.3,2.0,106.38,2009
475
+ Radial Velocity,3,11.577,0.0166,14.56,2011
476
+ Radial Velocity,3,27.582,0.0358,14.56,2011
477
+ Radial Velocity,3,106.72,0.03,14.56,2011
478
+ Radial Velocity,1,330.0,0.223,38.45,2011
479
+ Radial Velocity,1,1125.7,9.76,121.36,2008
480
+ Radial Velocity,1,653.22,9.7,33.46,2002
481
+ Radial Velocity,1,1928.0,5.1,35.87,2005
482
+ Radial Velocity,1,1299.0,1.9,106.38,2011
483
+ Radial Velocity,1,386.3,1.62,34.57,2003
484
+ Radial Velocity,1,1057.0,3.12,59.35,2008
485
+ Radial Velocity,1,176.3,2.9,126.1,2010
486
+ Radial Velocity,1,103.95,5.76,55.19,2008
487
+ Radial Velocity,2,44.236,2.12,42.68,2009
488
+ Radial Velocity,2,1008.0,6.56,42.68,2009
489
+ Radial Velocity,1,528.4,1.21,12.87,2003
490
+ Radial Velocity,1,1027.0,0.85,53.05,2009
491
+ Radial Velocity,1,331.5,0.96,59.28,2009
492
+ Radial Velocity,1,2.8758911,,78.86,2005
493
+ Radial Velocity,1,4.072,1.33,63.49,2005
494
+ Radial Velocity,1,2.391,15.5,76.51,2009
495
+ Radial Velocity,1,1096.2,0.168,29.55,2011
496
+ Radial Velocity,1,2097.0,3.0,85.18,2009
497
+ Radial Velocity,1,689.0,1.5,182.82,2011
498
+ Radial Velocity,1,499.4,2.73,51.87,2008
499
+ Radial Velocity,1,18.596,0.0193,18.08,2011
500
+ Radial Velocity,1,3342.0,0.947,18.06,2006
501
+ Radial Velocity,1,163.9,5.02,65.79,2008
502
+ Radial Velocity,2,408.6,2.24,68.54,2004
503
+ Radial Velocity,2,3452.0,2.58,68.54,2014
504
+ Radial Velocity,2,194.3,0.85,43.4,2007
505
+ Radial Velocity,2,391.9,0.82,43.4,2007
506
+ Radial Velocity,1,131.05,9.71,35.37,2011
507
+ Radial Velocity,1,842.0,0.75,55.1,2009
508
+ Radial Velocity,1,4.6455,0.013,24.05,2010
509
+ Radial Velocity,1,359.5546,10.57,49.0,2007
510
+ Radial Velocity,1,104.84,0.12,33.48,2011
511
+ Radial Velocity,1,521.0,1.8,114.15,2011
512
+ Radial Velocity,2,12.62,1.13,68.59,2013
513
+ Radial Velocity,2,248.4,1.9,68.59,2013
514
+ Radial Velocity,2,1178.4,2.1,52.72,2006
515
+ Radial Velocity,2,352.3,0.73,52.72,2012
516
+ Radial Velocity,4,643.25,,15.28,2000
517
+ Radial Velocity,4,4205.8,1.814,15.28,2004
518
+ Radial Velocity,4,9.6386,,15.28,2004
519
+ Radial Velocity,4,310.55,,15.28,2006
520
+ Radial Velocity,1,8.428198,14.4,31.26,2002
521
+ Radial Velocity,2,75.29,0.77,69.44,2010
522
+ Radial Velocity,2,1314.0,2.29,69.44,2010
523
+ Radial Velocity,1,282.4,0.48,51.81,2010
524
+ Radial Velocity,1,606.4,2.7,37.98,2009
525
+ Radial Velocity,1,1155.0,0.36,21.92,2005
526
+ Radial Velocity,1,5144.0,3.53,42.99,2012
527
+ Radial Velocity,1,420.77,1.7,50.0,2007
528
+ Radial Velocity,2,58.11289,8.02,37.88,1998
529
+ Radial Velocity,2,1749.5,18.1,37.88,2000
530
+ Radial Velocity,1,6.403,0.23,43.12,2002
531
+ Radial Velocity,2,225.62,2.88,36.32,2000
532
+ Radial Velocity,2,2102.0,4.04,36.32,2003
533
+ Radial Velocity,1,1145.0,0.67,64.98,2007
534
+ Radial Velocity,1,538.0,1.83,,2007
535
+ Radial Velocity,1,1523.0,2.6,44.05,2009
536
+ Radial Velocity,1,323.6,2.7,134.95,2008
537
+ Radial Velocity,1,1290.0,7.8,67.02,2009
538
+ Radial Velocity,1,297.3,0.61,127.55,2007
539
+ Astrometry,1,1016.0,,14.98,2010
540
+ Radial Velocity,2,406.6,1.49,59.03,1999
541
+ Radial Velocity,2,110.9,0.15,59.03,2010
542
+ Radial Velocity,1,71.484,7.03,46.73,2001
543
+ Radial Velocity,1,14.476,0.08,63.69,2008
544
+ Radial Velocity,1,3.0925,0.95,27.05,2000
545
+ Radial Velocity,1,396.03,,131.75,2010
546
+ Radial Velocity,1,479.0,1.6,114.55,2009
547
+ Radial Velocity,1,663.0,3.3,115.47,2009
548
+ Radial Velocity,3,9.3743,0.0238,26.15,2008
549
+ Radial Velocity,3,962.0,0.64,26.15,2008
550
+ Radial Velocity,3,2172.0,0.54,26.15,2008
551
+ Radial Velocity,1,956.0,0.37,55.93,2009
552
+ Radial Velocity,2,634.23,3.69,52.83,2004
553
+ Radial Velocity,2,2950.0,3.82,52.83,2008
554
+ Radial Velocity,1,6.838,0.94,47.37,2006
555
+ Radial Velocity,1,986.0,0.75,44.98,2006
556
+ Radial Velocity,2,3.097,0.52,47.92,1998
557
+ Radial Velocity,2,3810.0,1.99,47.92,1999
558
+ Radial Velocity,1,456.46,1.26,52.63,2004
559
+ Radial Velocity,1,14.275,0.0316,17.72,2011
560
+ Radial Velocity,1,2.21857578,,19.25,2005
561
+ Radial Velocity,1,1136.1,5.93,62.11,2002
562
+ Radial Velocity,2,2891.0,1.502,15.89,2003
563
+ Radial Velocity,2,17.1,0.057,15.89,2005
564
+ Radial Velocity,1,1038.1,1.9,54.23,2007
565
+ Radial Velocity,1,4885.0,3.1,189.39,2009
566
+ Radial Velocity,1,24.348,0.72,19.89,1999
567
+ Radial Velocity,2,74.72,0.05318,8.82,2011
568
+ Radial Velocity,2,525.8,0.07552,8.82,2011
569
+ Radial Velocity,1,351.5,2.5,67.39,2007
570
+ Radial Velocity,1,18.20163,3.7,37.35,1999
571
+ Radial Velocity,1,1289.0,3.0,46.93,2002
572
+ Radial Velocity,1,3638.0,6.9,43.57,2012
573
+ Radial Velocity,1,1333.0,2.58,32.99,2007
574
+ Radial Velocity,1,1035.7,0.79,32.83,2011
575
+ Radial Velocity,2,613.8,1.85,68.35,2010
576
+ Radial Velocity,2,825.0,0.895,68.35,2010
577
+ Radial Velocity,2,255.87,17.4,46.34,2002
578
+ Radial Velocity,2,1383.4,2.44,46.34,2004
579
+ Imaging,1,,,40.85,2006
580
+ Radial Velocity,3,1931.0,4.05,47.3,2009
581
+ Radial Velocity,3,34.873,0.054,47.3,2011
582
+ Radial Velocity,3,2831.6,1.68,47.3,2012
583
+ Radial Velocity,1,1733.0,0.266,26.95,2011
584
+ Radial Velocity,1,279.8,1.37,90.33,2008
585
+ Radial Velocity,1,610.0,2.2,170.07,2009
586
+ Radial Velocity,2,161.97,,55.31,2012
587
+ Radial Velocity,2,1155.7,,55.31,2012
588
+ Radial Velocity,1,123.0,0.45,43.99,2004
589
+ Radial Velocity,1,875.5,9.9,352.11,2012
590
+ Radial Velocity,1,3.52474859,,47.08,1999
591
+ Radial Velocity,1,442.1,1.23,21.29,1998
592
+ Radial Velocity,1,354.8,,55.93,2007
593
+ Radial Velocity,1,2.245715,0.45,52.72,2005
594
+ Radial Velocity,1,373.3,2.3,121.8,2009
595
+ Radial Velocity,1,951.0,4.5,40.75,2001
596
+ Radial Velocity,2,7.2825,0.0087,21.52,2011
597
+ Radial Velocity,2,10.866,0.0097,21.52,2011
598
+ Radial Velocity,2,191.99,0.101,38.64,2011
599
+ Radial Velocity,2,2277.0,0.246,38.64,2011
600
+ Radial Velocity,2,3.93,0.017,43.53,2009
601
+ Radial Velocity,2,567.0,0.33,43.53,2009
602
+ Radial Velocity,1,1311.0,1.26,33.29,2002
603
+ Radial Velocity,1,1294.0,2.1,26.52,2002
604
+ Radial Velocity,1,118.45,0.65,37.89,2003
605
+ Radial Velocity,2,7.126816,1.39,19.72,1998
606
+ Radial Velocity,2,4270.0,2.6,19.72,2005
607
+ Radial Velocity,1,1319.0,13.0,54.92,2010
608
+ Radial Velocity,1,225.7,0.21,29.94,2010
609
+ Radial Velocity,1,5501.0,10.39,29.2,2012
610
+ Radial Velocity,1,2093.3,,,2012
611
+ Radial Velocity,1,3.8335,0.06,81.1,2007
612
+ Radial Velocity,1,672.1,11.1,289.02,2012
613
+ Radial Velocity,1,2209.0,1.06,45.23,2012
614
+ Radial Velocity,1,3724.7,1.45,48.43,2011
615
+ Radial Velocity,1,456.1,3.09,52.88,2007
616
+ Radial Velocity,1,3999.0,1.9,50.45,2011
617
+ Radial Velocity,1,572.38,7.75,41.95,1999
618
+ Radial Velocity,1,26.73,0.71,94.07,2006
619
+ Radial Velocity,1,141.6,1.08,108.46,2007
620
+ Radial Velocity,1,192.0,6.575,,2013
621
+ Radial Velocity,1,501.75,6.9,,2009
622
+ Radial Velocity,1,745.7,5.3,307.69,2011
623
+ Radial Velocity,1,2443.0,2.54,54.92,2009
624
+ Radial Velocity,1,8.7836,0.0265,9.42,2008
625
+ Radial Velocity,1,3.369,0.76,50.2,2004
626
+ Radial Velocity,2,345.72,1.42,44.8,2009
627
+ Radial Velocity,2,9017.8,,44.8,2011
628
+ Radial Velocity,1,57.0,0.47,23.8,2010
629
+ Radial Velocity,1,16.2,1.25,223.21,2010
630
+ Radial Velocity,3,6.673855,3.88,52.88,2005
631
+ Radial Velocity,3,147.73,1.28,52.88,2006
632
+ Radial Velocity,3,952.0,0.57,52.88,2009
633
+ Radial Velocity,1,41.397,0.298,11.03,2010
634
+ Radial Velocity,3,8.1352,0.036,25.87,2011
635
+ Radial Velocity,3,32.03,0.41,25.87,2011
636
+ Radial Velocity,3,431.7,0.527,25.87,2011
637
+ Imaging,1,,,11.43,2010
638
+ Radial Velocity,1,124.6,9.18,149.25,2013
639
+ Radial Velocity,1,17337.5,9.0,23.98,2009
640
+ Radial Velocity,1,511.098,8.82,31.33,2002
641
+ Imaging,1,,,131.93,2010
642
+ Radial Velocity,1,111.7,2.1,14.9,2009
643
+ Radial Velocity,1,5.0505,1.068,44.46,2013
644
+ Radial Velocity,1,311.288,1.94,17.24,1999
645
+ Imaging,4,170000.0,,39.94,2008
646
+ Imaging,4,69000.0,,39.94,2008
647
+ Imaging,4,37000.0,,39.94,2008
648
+ Imaging,4,18000.0,,39.94,2010
649
+ Transit,1,1.217514,,262.0,2012
650
+ Transit,1,4.1137912,,124.22,2012
651
+ Transit,1,2.7033904,1.47,178.0,2013
652
+ Transit,1,7.8457,,222.0,2014
653
+ Transit,1,2.47063,,213.0,2006
654
+ Transit,1,2.204737,,320.0,2008
655
+ Transit,1,4.8878162,,38.0,2008
656
+ Transit,1,3.21346,,550.0,2009
657
+ Transit,1,3.54846,,,2009
658
+ Transit,1,3.234723,,,2009
659
+ Transit,1,4.885525,,,2009
660
+ Transit,1,3.52254,,1330.0,2010
661
+ Transit,3,19.24,,650.0,2010
662
+ Transit,3,38.91,,650.0,2010
663
+ Transit,3,1.592851,,650.0,2010
664
+ Transit,2,0.837495,,173.0,2011
665
+ Transit,2,45.29485,,173.0,2011
666
+ Transit,6,10.3039,,613.0,2010
667
+ Transit,6,13.0241,,613.0,2010
668
+ Transit,6,22.6845,,613.0,2010
669
+ Transit,6,31.9996,,613.0,2010
670
+ Transit,6,46.6888,,613.0,2010
671
+ Transit,6,118.3807,,613.0,2010
672
+ Transit,1,4.4379637,,600.0,2011
673
+ Transit,1,1.7635892,,,2011
674
+ Transit,1,6.790123,,980.0,2011
675
+ Transit,1,4.942782,,,2011
676
+ Transit,1,228.776,,61.0,2011
677
+ Transit,1,1.4857108,,800.0,2011
678
+ Transit,3,3.504725,,,2011
679
+ Transit,3,7.64159,,,2011
680
+ Transit,3,14.85888,,,2011
681
+ Transit,2,9.2869944,,2119.0,2011
682
+ Transit Timing Variations,2,160.0,,2119.0,2011
683
+ Transit,5,3.6961219,,290.0,2011
684
+ Transit,5,10.854092,,290.0,2011
685
+ Transit,5,77.61184,,290.0,2011
686
+ Transit,5,6.098493,,290.0,2011
687
+ Transit,5,19.57706,,290.0,2011
688
+ Transit,1,2.785755,,108.0,2011
689
+ Transit,1,289.8623,,190.0,2011
690
+ Transit,2,7.1073,,800.0,2011
691
+ Transit,2,10.7421,,800.0,2011
692
+ Transit,2,8.1453,,1200.0,2011
693
+ Transit,2,12.3335,,1200.0,2011
694
+ Transit,3,6.2385,,,2011
695
+ Transit,3,12.7204,,,2011
696
+ Radial Velocity,3,123.0,,,2014
697
+ Transit,2,12.2829,,,2011
698
+ Transit,2,17.2513,,,2011
699
+ Transit,2,15.3348,,,2011
700
+ Transit,2,31.3309,,,2011
701
+ Transit,2,5.9123,,,2011
702
+ Transit,2,8.9858,,,2011
703
+ Transit,2,10.3376,,1400.0,2011
704
+ Transit,2,13.2907,,1400.0,2011
705
+ Transit,3,29.33434,,1400.0,2012
706
+ Transit,3,60.323105,,1400.0,2012
707
+ Transit,3,143.34394,,1400.0,2012
708
+ Transit,2,20.8613,,2100.0,2011
709
+ Transit,2,42.6318,,2100.0,2011
710
+ Transit,5,5.90124,,303.0,2011
711
+ Transit,5,8.7522,,303.0,2011
712
+ Transit,5,22.7802,,303.0,2012
713
+ Transit,5,2.896,,303.0,2012
714
+ Transit,5,0.74296,,303.0,2012
715
+ Transit,5,5.66793,,,2011
716
+ Transit,5,13.17562,,,2011
717
+ Transit,5,21.77596,,,2011
718
+ Transit,5,31.7844,,,2011
719
+ Transit,5,41.02902,,,2011
720
+ Transit,1,288.822,,1499.0,2011
721
+ Transit,1,131.458,,1645.0,2011
722
+ Transit,2,13.83989,,470.0,2012
723
+ Transit,2,16.23855,,470.0,2012
724
+ Transit,3,13.367308,,66.0,2013
725
+ Transit,3,21.301886,,66.0,2013
726
+ Transit,3,39.792187,,66.0,2013
727
+ Transit,1,105.599,,600.0,2012
728
+ Transit,1,21.0874,,1200.0,2011
729
+ Transit,1,6.87349,,2700.0,2010
730
+ Transit,1,1.855558,,770.0,2011
731
+ Transit,3,1.2137672,,38.7,2011
732
+ Transit,3,0.45328509,,38.7,2011
733
+ Transit,3,1.865169,,38.7,2011
734
+ Transit,1,3.024095,,1950.0,2011
735
+ Transit,1,3.24674,,2250.0,2011
736
+ Transit,1,2.455239,,333.0,2011
737
+ Transit,2,33.60134,,855.0,2012
738
+ Transit Timing Variations,2,57.011,,855.0,2012
739
+ Transit,2,49.532,,1500.0,2012
740
+ Transit,2,303.137,,1500.0,2012
741
+ Transit,4,4.7779803,,,2012
742
+ Transit,4,9.6739283,,,2012
743
+ Transit,4,42.8961,,,2014
744
+ Radial Velocity,4,982.0,,,2014
745
+ Transit,2,7.2037945,,,2012
746
+ Transit,2,10.9129343,,,2012
747
+ Transit,2,7.81254,,,2012
748
+ Transit,2,9.37647,,,2012
749
+ Transit,3,45.154,,,2012
750
+ Transit,3,85.312,,,2012
751
+ Transit Timing Variations,3,,,,2014
752
+ Transit,2,7.8773565,,,2012
753
+ Transit,2,16.3850021,,,2012
754
+ Transit,2,18.6489525,,,2012
755
+ Transit,2,38.5583038,,,2012
756
+ Transit,2,8.0109434,,,2012
757
+ Transit,2,12.0717249,,,2012
758
+ Transit,2,27.9481449,,,2012
759
+ Transit,2,42.1516418,,,2012
760
+ Transit,2,10.5016,,,2012
761
+ Transit,2,21.40239,,,2012
762
+ Transit,2,5.7293196,,,2012
763
+ Transit,2,11.6092567,,,2012
764
+ Transit,2,10.2184954,,,2012
765
+ Transit,2,15.5741568,,,2012
766
+ Transit,2,11.8681707,,,2012
767
+ Transit,2,17.9801235,,,2012
768
+ Transit,3,7.1316185,,,2012
769
+ Transit,3,8.9193459,,,2012
770
+ Transit,3,11.9016171,,,2012
771
+ Transit,1,59.87756,,,2013
772
+ Transit,5,5.714932,,368.0,2013
773
+ Transit,5,12.4417,,368.0,2013
774
+ Transit,5,18.16406,,368.0,2013
775
+ Transit,5,122.3874,,368.0,2013
776
+ Transit,5,267.291,,368.0,2013
777
+ Transit,1,9.4341505,,200.0,2013
778
+ Transit,1,138.317,,1000.0,2012
779
+ Transit,3,2.15491,,,2012
780
+ Transit,3,5.859944,,,2012
781
+ Transit,3,8.13123,,,2012
782
+ Transit,1,17.815815,,1107.0,2013
783
+ Transit,1,15.7259,,1107.0,2013
784
+ Transit,3,5.398763,,135.0,2012
785
+ Transit,3,9.605085,,135.0,2012
786
+ Radial Velocity,3,580.0,0.947,135.0,2012
787
+ Transit,2,13.722341,,,2013
788
+ Transit,2,242.4613,,,2013
789
+ Orbital Brightness Modulation,2,0.240104,,1180.0,2011
790
+ Orbital Brightness Modulation,2,0.342887,,1180.0,2011
791
+ Transit,1,3.90512,,800.0,2010
792
+ Transit,1,7.340718,,1330.0,2013
793
+ Transit,1,8.884924,,1140.0,2013
794
+ Orbital Brightness Modulation,1,1.54492875,,,2013
795
+ Transit,1,3.57878087,,570.0,2013
796
+ Transit,1,0.355,,,2013
797
+ Transit,2,13.485,,,2012
798
+ Transit,2,27.402,,,2012
799
+ Transit,2,7.053,,,2012
800
+ Transit,2,9.522,,,2012
801
+ Transit,2,5.955,,,2012
802
+ Transit,2,12.04,,,2012
803
+ Transit,2,26.444,,,2012
804
+ Transit,2,51.538,,,2012
805
+ Transit,2,9.77,,,2012
806
+ Transit,2,20.09,,,2012
807
+ Transit,2,8.726,,,2012
808
+ Transit,2,12.883,,,2012
809
+ Transit,2,8.306,,,2012
810
+ Transit,2,12.513,,,2012
811
+ Transit,1,282.5255,,,2013
812
+ Transit,2,114.73635,,,2013
813
+ Transit,2,191.2318,,,2013
814
+ Transit,2,10.95416,,339.0,2013
815
+ Transit Timing Variations,2,22.3395,,339.0,2013
816
+ Transit,4,3.743208,,,2013
817
+ Transit,4,10.423648,,,2013
818
+ Transit,4,22.342989,,,2013
819
+ Transit,4,54.32031,,,2013
820
+ Transit,7,7.008151,,780.0,2013
821
+ Transit,7,8.719375,,780.0,2013
822
+ Transit,7,59.73667,,780.0,2013
823
+ Transit,7,91.93913,,780.0,2013
824
+ Transit,7,124.9144,,780.0,2013
825
+ Transit,7,210.60697,,780.0,2013
826
+ Transit,7,331.60059,,780.0,2013
827
+ Transit,1,6.24658,,1030.0,2013
828
+ Transit,2,13.749,,,2013
829
+ Transit,2,26.723,,,2013
830
+ Transit,2,4.72674,,,2014
831
+ Radial Velocity,2,1460.0,,,2014
832
+ Transit,2,2.50806,,,2014
833
+ Radial Velocity,2,820.3,,,2014
834
+ Transit,1,11.5231,,,2014
835
+ Transit,1,16.2385,,,2014
836
+ Transit,2,2.58664,,,2014
837
+ Radial Velocity,2,789.0,,,2014
838
+ Transit,1,1.54168,,,2014
839
+ Transit,1,4.60358,,,2014
840
+ Transit,3,6.88705,,,2014
841
+ Transit,3,12.8159,,,2014
842
+ Transit,3,35.3331,,,2014
843
+ Transit,5,5.28696,,,2014
844
+ Transit,5,7.07142,,,2014
845
+ Transit,5,10.3117,,,2014
846
+ Transit,5,16.1457,,,2013
847
+ Transit,5,27.4536,,,2014
848
+ Transit,2,15.9654,,,2014
849
+ Transit,2,179.612,,,2014
850
+ Transit,2,5.4122,,,2013
851
+ Transit,4,6.16486,,,2014
852
+ Transit,4,13.5708,,,2014
853
+ Transit,4,23.9802,,,2014
854
+ Transit,4,43.8445,,,2014
855
+ Transit,2,6.48163,,,2014
856
+ Transit,2,21.2227,,,2014
857
+ Transit,2,4.754,,,2014
858
+ Transit,2,8.92507,,,2014
859
+ Transit,2,8.041,,,2013
860
+ Transit,2,11.776,,,2013
861
+ Transit,2,15.09,,,2013
862
+ Transit,2,22.804,,,2013
863
+ Transit,3,27.50868,,,2013
864
+ Transit,2,16.092,,,2014
865
+ Transit,2,25.5169,,,2014
866
+ Transit,2,13.78164,,,2014
867
+ Transit,2,23.08933,,,2014
868
+ Transit,2,22.951,,,2013
869
+ Transit,2,42.882,,,2013
870
+ Transit,2,36.855,,,2013
871
+ Transit,2,49.412,,,2013
872
+ Transit,2,23.654,,,2013
873
+ Transit,2,50.447,,,2013
874
+ Transit,2,31.884,,,2013
875
+ Transit,2,48.648,,,2013
876
+ Transit,2,17.324,,,2013
877
+ Transit,2,33.006,,,2013
878
+ Transit,2,35.736,,,2013
879
+ Transit,2,54.414,,,2013
880
+ Transit,2,24.806,,,2013
881
+ Transit,2,44.347,,,2013
882
+ Transit,2,5.487,,,2013
883
+ Transit,2,8.291,,,2013
884
+ Transit,2,10.416,,,2013
885
+ Transit,2,13.084,,,2013
886
+ Transit,2,34.921,,,2013
887
+ Transit,2,71.312,,,2013
888
+ Transit,2,17.849,,,2013
889
+ Transit,2,26.136,,,2013
890
+ Transit,2,42.994,,,2013
891
+ Transit,2,88.505,,,2013
892
+ Transit,2,2.42629,,,2014
893
+ Transit,2,4.62332,,,2014
894
+ Transit,2,0.66931,,,2014
895
+ Radial Velocity,2,3000.0,,,2014
896
+ Transit,1,2.46502,,,2014
897
+ Transit,1,68.9584,,,2014
898
+ Transit,1,17.833648,,132.0,2013
899
+ Transit,1,3.00516,,,2013
900
+ Transit,1,1.72086123,,1056.0,2014
901
+ Transit,1,66.262,,,2014
902
+ Imaging,1,40000.0,,,2011
903
+ Transit,1,3.91405,,2000.0,2007
904
+ Microlensing,1,,,,2008
905
+ Microlensing,1,,,,2008
906
+ Microlensing,1,,,,2009
907
+ Microlensing,1,,,3600.0,2013
908
+ Microlensing,1,2780.0,,,2011
909
+ Microlensing,1,,,,2010
910
+ Microlensing,1,1970.0,,,2010
911
+ Microlensing,1,,,2300.0,2012
912
+ Microlensing,1,,,2800.0,2012
913
+ Microlensing,1,,,7720.0,2012
914
+ Microlensing,1,,,7560.0,2013
915
+ Radial Velocity,1,677.8,19.8,,2007
916
+ Radial Velocity,1,6.958,0.34,,2014
917
+ Radial Velocity,1,5.118,0.4,,2014
918
+ Radial Velocity,1,121.71,1.54,,2014
919
+ Microlensing,1,,,,2004
920
+ Microlensing,1,3600.0,,,2005
921
+ Microlensing,1,3300.0,,,2006
922
+ Microlensing,1,3500.0,,,2005
923
+ Microlensing,2,1825.0,,,2008
924
+ Microlensing,2,5100.0,,,2008
925
+ Microlensing,1,,,,2009
926
+ Microlensing,1,,,2570.0,2012
927
+ Microlensing,2,,,4080.0,2012
928
+ Microlensing,2,,,4080.0,2012
929
+ Microlensing,1,,,1760.0,2013
930
+ Microlensing,1,,,4970.0,2013
931
+ Transit,1,2.4855335,,,2008
932
+ Transit,1,3.101278,,,2004
933
+ Transit,1,1.2119189,,,2002
934
+ Transit,1,4.0161,,,2004
935
+ Transit,1,1.4324752,,600.0,2004
936
+ Transit,1,1.689868,,2500.0,2004
937
+ Transit,1,3.9791,,,2007
938
+ Transit,1,3.67724,,,2007
939
+ Imaging,1,730000.0,,,2006
940
+ Transit,1,3.1606296,,1200.0,2013
941
+ Radial Velocity,1,4.4264,,,2012
942
+ Radial Velocity,1,2.1451,,,2012
943
+ Pulsar Timing,3,25.262,,,1992
944
+ Pulsar Timing,3,66.5419,,,1992
945
+ Pulsar Timing,3,98.2114,,,1994
946
+ Pulsar Timing,1,36525.0,,,2003
947
+ Pulsar Timing,1,0.09070629,,1200.0,2011
948
+ Transit,1,1.420033,,,2010
949
+ Transit,1,1.3371182,,,2011
950
+ Imaging,1,,,135.0,2013
951
+ Imaging,1,,,120.0,2013
952
+ Imaging,1,,,,2010
953
+ Transit,1,4.2,,8500.0,2006
954
+ Transit,1,1.796,,8500.0,2006
955
+ Transit,1,3.030065,,152.3,2004
956
+ Transit,1,1.30618581,,228.0,2007
957
+ Transit,1,3.553945,,492.0,2007
958
+ Transit,1,1.4822446,,360.0,2011
959
+ Imaging,1,,,,2008
960
+ Pulsation Timing Variations,1,1170.0,,,2007
961
+ Transit,1,2.5199449,,408.0,2007
962
+ Transit,1,2.152226,,147.0,2007
963
+ Transit,1,1.846835,,220.0,2007
964
+ Transit,1,1.33823187,,300.0,2007
965
+ Transit,1,1.62843142,,300.0,2008
966
+ Transit,1,3.361006,,,2009
967
+ Transit,1,4.954658,,140.0,2008
968
+ Transit,1,8.158715,,87.0,2010
969
+ Transit,1,3.0927616,,90.0,2008
970
+ Transit,1,3.7224747,,121.7,2008
971
+ Transit,1,1.091423,,,2008
972
+ Transit,1,4.353011,,155.0,2009
973
+ Transit,1,2.243752,,160.0,2008
974
+ Transit,1,3.7520656,,,2009
975
+ Transit,1,3.1186009,,,2009
976
+ Transit,1,3.7354417,,400.0,2009
977
+ Transit,1,0.94145299,,105.49,2009
978
+ Transit,1,0.78884,,250.0,2009
979
+ Transit,1,4.322482,,242.0,2010
980
+ Transit,1,3.5327313,,300.0,2010
981
+ Transit,1,2.9444256,,,2010
982
+ Transit,1,2.34121242,,,2010
983
+ Transit,1,3.764825,,,2010
984
+ Transit,1,2.7566004,,250.0,2010
985
+ Transit,1,3.408821,,,2010
986
+ Transit,1,3.922727,,70.0,2010
987
+ Transit,1,3.4059096,,360.0,2010
988
+ Transit,1,2.718659,,,2010
989
+ Transit,1,1.2198669,,116.14,2010
990
+ Transit,1,4.3176782,,120.0,2010
991
+ Transit,1,3.161575,,,2011
992
+ Transit,1,1.5373653,,450.0,2011
993
+ Transit,1,3.577469,,343.0,2010
994
+ Transit,1,6.871815,,110.0,2010
995
+ Transit,1,4.055259,,230.0,2011
996
+ Transit,1,3.052401,,180.0,2010
997
+ Transit,1,4.9816872,,160.0,2012
998
+ Transit,1,0.813475,,80.0,2011
999
+ Transit,1,2.4238039,,,2011
1000
+ Transit,1,3.1260876,,,2011
1001
+ Transit,1,1.43037,,,2011
1002
+ Transit,1,4.1591399,,200.0,2012
1003
+ Transit,1,2.143634,,,2011
1004
+ Transit,1,2.7817387,,170.0,2012
1005
+ Transit,1,1.9550959,,230.0,2011
1006
+ Transit,1,1.7497798,,140.0,2012
1007
+ Transit,1,3.6936411,,200.0,2012
1008
+ Transit,1,4.465633,,330.0,2012
1009
+ Transit,1,4.617101,,255.0,2012
1010
+ Transit,1,2.838971,,455.0,2012
1011
+ Transit,1,5.01718,,300.0,2012
1012
+ Transit,1,7.919585,,125.0,2012
1013
+ Transit,1,4.3050011,,400.0,2012
1014
+ Transit,1,3.8559,,480.0,2012
1015
+ Transit,1,4.411953,,160.0,2012
1016
+ Transit,1,4.37809,,330.0,2012
1017
+ Transit,1,1.5732918,,350.0,2012
1018
+ Transit,1,2.3114243,,310.0,2013
1019
+ Transit,1,4.086052,,380.0,2012
1020
+ Transit,1,4.61442,,225.0,2012
1021
+ Transit,1,2.9036747,,345.0,2012
1022
+ Transit,1,2.2167421,,340.0,2012
1023
+ Transit,1,2.484193,,260.0,2013
1024
+ Transit,1,1.3600309,,93.0,2012
1025
+ Transit,1,2.17517632,,550.0,2012
1026
+ Transit,1,3.6623866,,240.0,2012
1027
+ Transit,1,3.0678504,,60.0,2012
1028
+ Transit,1,0.925542,,470.0,2014
1029
+ Imaging,1,,,19.2,2011
1030
+ Transit,1,3.352057,,3200.0,2012
1031
+ Imaging,1,,,10.1,2012
1032
+ Transit,1,3.94150685,,172.0,2006
1033
+ Transit,1,2.615864,,148.0,2007
1034
+ Transit,1,3.1915239,,174.0,2007
1035
+ Transit,1,4.1250828,,293.0,2008
1036
+ Transit,1,4.187757,,260.0,2008
data/seaborn/png/img1.png ADDED
data/seaborn/png/img2.png ADDED
data/seaborn/png/img3.png ADDED
data/seaborn/png/img4.png ADDED
data/seaborn/png/img5.png ADDED
data/seaborn/png/img6.png ADDED
data/seaborn/process/attention.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+
3
+ def main():
4
+
5
+ df = pd.read_csv("raw/attention.csv")
6
+ df = pd.melt(df, ["subidr", "attnr"], var_name="solutions", value_name="score")
7
+ df.solutions = df.solutions.str[-1].astype(int)
8
+ df.columns = ["subject", "attention", "solutions", "score"]
9
+ df.to_csv("attention.csv")
10
+
11
+
12
+ if __name__ == "__main__":
13
+ main()
data/seaborn/process/dowjones.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+
3
+ if __name__ == "__main__":
4
+
5
+ (
6
+ pd.read_csv("raw/dowjones.csv")
7
+ .set_axis(["Date", "Price"], axis=1)
8
+ .to_csv("dowjones.csv", index=False)
9
+ )
data/seaborn/process/exercise.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+
3
+
4
+ def main():
5
+
6
+ df = pd.read_csv("raw/exercise.csv")
7
+ df["diet"] = df.diet.map({1: "low fat", 2: "no fat"})
8
+ df["kind"] = df.exertype.map({1: "rest", 2: "walking", 3: "running"})
9
+ df["time"] = df.time.map({1: "1 min", 2: "15 min", 3: "30 min"})
10
+ df = df.drop(["exertype"], axis=1)
11
+ df.to_csv("exercise.csv")
12
+
13
+ if __name__ == "__main__":
14
+ main()
data/seaborn/process/flights.py ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import pandas as pd
3
+
4
+ def main():
5
+
6
+ flights = pd.read_csv("/Users/mwaskom/Desktop/AirPassengers.csv")
7
+ flights["year"] = np.floor(flights.time).astype(int)
8
+ flights["month"] = np.round((flights.time - flights.year) * 12).astype(int)
9
+
10
+ month_number_to_name = {0: "January",
11
+ 1: "February",
12
+ 2: "March",
13
+ 3: "April",
14
+ 4: "May",
15
+ 5: "June",
16
+ 6: "July",
17
+ 7: "August",
18
+ 8: "September",
19
+ 9: "October",
20
+ 10: "November",
21
+ 11: "December"}
22
+
23
+ flights["month"] = flights.month.map(month_number_to_name)
24
+ flights["passengers"] = flights["AirPassengers"]
25
+ flights = flights.drop(["AirPassengers", "time", "Unnamed: 0"], axis=1)
26
+ flights.to_csv("flights.csv", index=False)
27
+
28
+
29
+ if __name__ == "__main__":
30
+ main()
data/seaborn/process/gammas.py ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import pandas as pd
3
+ from scipy import stats
4
+
5
+
6
+ def main():
7
+
8
+ rs = np.random.RandomState(24)
9
+ n = 20
10
+ t = 10
11
+
12
+ x = np.linspace(0, t, 100)
13
+ s = np.array([stats.gamma.pdf(x, a) for a in [3, 5, 7]])
14
+ d = s[:, np.newaxis, :]
15
+
16
+ d = d * np.array([1, -1])[rs.binomial(1, .3, 3)][:, np.newaxis, np.newaxis]
17
+ d = d + rs.normal(0, .15, (3, n))[:, :, np.newaxis]
18
+ d = d + rs.uniform(0, .25, 3)[:, np.newaxis, np.newaxis]
19
+ d *= 10
20
+ d = d.transpose((1, 2, 0))
21
+
22
+ p = pd.Panel(d,
23
+ items=pd.Series(np.arange(n), name="subject"),
24
+ major_axis=pd.Series(x, name="timepoint"),
25
+ minor_axis=pd.Series(["IPS", "AG", "V1"], name="ROI"),
26
+ )
27
+
28
+ df = p.to_frame().stack().reset_index(name="BOLD signal")
29
+ df.to_csv("gammas.csv", index=False)
30
+
31
+
32
+ if __name__ == "__main__":
33
+ main()
data/seaborn/process/geyser.py ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import numpy as np
2
+ import pandas as pd
3
+ from scipy.cluster.vq import kmeans2
4
+
5
+ if __name__ == "__main__":
6
+
7
+ np.random.seed(0)
8
+
9
+ df = pd.read_csv("raw/geyser.csv")
10
+ df.columns = ["duration", "waiting"]
11
+
12
+ _, z = kmeans2(df, 2)
13
+ df["kind"] = np.where(z, "long", "short")
14
+
15
+ df.to_csv("geyser.csv", index=False)
data/seaborn/process/glue.py ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+
3
+ if __name__ == "__main__":
4
+
5
+ (
6
+ pd.read_csv("raw/glue.csv")
7
+ .drop(["AX", "MNLI-mm", "WNLI"], axis=1)
8
+ .melt(["Model", "Year", "Encoder"], var_name="Task", value_name="Score")
9
+ .to_csv("glue.csv", index=False)
10
+ )
data/seaborn/process/healthexp.py ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import pandas as pd
2
+
3
+
4
+ if __name__ == "__main__":
5
+
6
+ G7_countries = {
7
+ "USA": "USA",
8
+ "CAN": "Canada",
9
+ "FRA": "France",
10
+ "DEU": "Germany",
11
+ "ITL": "Italy",
12
+ "GBR": "Great Britain",
13
+ "JPN": "Japan",
14
+ # "CHE": "Switzerland",
15
+ # "DNK": "Denmark",
16
+ # "KOR": "Korea",
17
+ # "BRA": "Brazil",
18
+ # "COL": "Colombia",
19
+ # "CHN": "China",
20
+ # "IND": "India",
21
+ }
22
+
23
+ (
24
+ pd.read_csv("raw/healthexp.csv")
25
+ .assign(Country=lambda x: x["Country"].map(G7_countries))
26
+ .dropna(subset=["Country"])
27
+ .query("Year <= 2020")
28
+ .to_csv("healthexp.csv", index=False)
29
+ )