toji 2.7.0 → 2.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/example/calendar.ipynb +36 -36
- data/example/calendar_file.ipynb +36 -36
- data/example/example_core.rb +57 -4
- data/example/{shubo.rb → moto.rb} +2 -2
- data/example/{shubo.yaml → moto.yaml} +0 -0
- data/example/recipe.rb +1 -1
- data/lib/toji.rb +1 -0
- data/lib/toji/brew.rb +1 -1
- data/lib/toji/brew/{shubo.rb → moto.rb} +1 -1
- data/lib/toji/calendar.rb +12 -12
- data/lib/toji/calendar/date_column.rb +4 -19
- data/lib/toji/calendar/date_row.rb +1 -1
- data/lib/toji/event.rb +5 -0
- data/lib/toji/event/action_event.rb +12 -0
- data/lib/toji/event/base.rb +9 -0
- data/lib/toji/event/kake_event.rb +13 -0
- data/lib/toji/event/koji_event.rb +19 -0
- data/lib/toji/event/rice_event.rb +34 -0
- data/lib/toji/product.rb +10 -65
- data/lib/toji/product/event_factory.rb +70 -0
- data/lib/toji/recipe.rb +16 -9
- data/lib/toji/recipe/action.rb +8 -0
- data/lib/toji/version.rb +1 -1
- metadata +14 -10
- data/example/shubo.ipynb +0 -121
- data/lib/toji/product/event.rb +0 -13
- data/lib/toji/product/rice_event.rb +0 -28
- data/lib/toji/product/rice_event_group.rb +0 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d35d2be82d441922dc77bc8a65ee7fc394a5648ec3ab41ede65f4ee38d937b52
|
4
|
+
data.tar.gz: de06a4db879120fb1fe29d82ffd7ab21588b550fdb6311c64cd5df12cbd69b5e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a53215b220614c575a62e3a4d72db29dd8aa8f4ee84828cddd61c9899f9be57980fee68d4526f1233ec0ccf4545595e75757b7845ad49d938aaf166fd7cccf4
|
7
|
+
data.tar.gz: 2eabc77f232bf25817bf7befbd41a15f991e1083b2d833cd56f4961fbecc774819d9d769c5227aebe15c1fd9d02c4a4343e7c5403acb2151aa200424e1e4c2ff
|
data/example/calendar.ipynb
CHANGED
@@ -23,25 +23,25 @@
|
|
23
23
|
" </script>\n",
|
24
24
|
"\n",
|
25
25
|
"\n",
|
26
|
-
"<div id=\"
|
26
|
+
"<div id=\"a5dc99bc-26e0-417b-86c0-98cbae4e548d\" style=\"height: 100%; width: 100%;\"></div>\n",
|
27
27
|
"\n",
|
28
28
|
"<script>\n",
|
29
29
|
" require(['plotly'], function(Plotly) { \n",
|
30
30
|
"Plotly.newPlot(\n",
|
31
|
-
" '
|
32
|
-
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"
|
31
|
+
" 'a5dc99bc-26e0-417b-86c0-98cbae4e548d',\n",
|
32
|
+
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"step0\",\"step1\",\"step2\",\"step3\",\"step4\",\"total\"]},\"cells\":{\"values\":[[\"rice_total\",\"kake\",\"koji\",\"alcohol\",\"water\",\"lactic_acid\"],[35.0,\"\",35,\"\",123,0.8],[65.0,65,\"\",\"\",\"\",\"\"],[200.0,150,50,\"\",200,\"\"],[300.0,245,55,\"\",400,\"\"],[\"\",\"\",\"\",\"\",128,\"\"],[600.0,460,140,\"\",851,0.8]]}}],\n",
|
33
33
|
" {\"height\":350},\n",
|
34
34
|
" {\"linkText\":\"Export to plot.ly\",\"showLink\":true}\n",
|
35
35
|
")\n",
|
36
36
|
"\n",
|
37
37
|
"window.addEventListener('resize', function() {\n",
|
38
|
-
" Plotly.Plots.resize(document.getElementById('
|
38
|
+
" Plotly.Plots.resize(document.getElementById('a5dc99bc-26e0-417b-86c0-98cbae4e548d'))\n",
|
39
39
|
"})\n",
|
40
40
|
" }) \n",
|
41
41
|
"</script>"
|
42
42
|
],
|
43
43
|
"text/plain": [
|
44
|
-
"#<Plotly::Offline::HTML:
|
44
|
+
"#<Plotly::Offline::HTML:0x00007f8ee198ce30 @id=\"a5dc99bc-26e0-417b-86c0-98cbae4e548d\", @data=[{:type=>:table, :header=>{:values=>[\"\", :step0, :step1, :step2, :step3, :step4, :total]}, :cells=>{:values=>[[:rice_total, :kake, :koji, :alcohol, :water, :lactic_acid], [35.0, \"\", 35, \"\", 123, 0.8], [65.0, 65, \"\", \"\", \"\", \"\"], [200.0, 150, 50, \"\", 200, \"\"], [300.0, 245, 55, \"\", 400, \"\"], [\"\", \"\", \"\", \"\", 128, \"\"], [600.0, 460, 140, \"\", 851, 0.8]]}}], @layout={:height=>350}, @config={:linkText=>\"Export to plot.ly\", :showLink=>true}, @embedded=true>"
|
45
45
|
]
|
46
46
|
},
|
47
47
|
"metadata": {},
|
@@ -63,25 +63,25 @@
|
|
63
63
|
" </script>\n",
|
64
64
|
"\n",
|
65
65
|
"\n",
|
66
|
-
"<div id=\"
|
66
|
+
"<div id=\"1cecf7c8-43d7-4f4f-ad00-5c94beb27c4f\" style=\"height: 100%; width: 100%;\"></div>\n",
|
67
67
|
"\n",
|
68
68
|
"<script>\n",
|
69
69
|
" require(['plotly'], function(Plotly) { \n",
|
70
70
|
"Plotly.newPlot(\n",
|
71
|
-
" '
|
72
|
-
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"
|
71
|
+
" '1cecf7c8-43d7-4f4f-ad00-5c94beb27c4f',\n",
|
72
|
+
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"step0\",\"step1\",\"step2\",\"step3\",\"step4\",\"total\"]},\"cells\":{\"values\":[[\"rice_total\",\"kake\",\"koji\",\"alcohol\",\"water\",\"lactic_acid\"],[32.0,\"\",32,\"\",112,0.733],[60.0,60,\"\",\"\",\"\",\"\"],[184.0,138,46,\"\",183,\"\"],[275.0,225,50,\"\",367,\"\"],[\"\",\"\",\"\",\"\",117,\"\"],[551.0,423,128,\"\",779,0.733]]}}],\n",
|
73
73
|
" {\"height\":350},\n",
|
74
74
|
" {\"linkText\":\"Export to plot.ly\",\"showLink\":true}\n",
|
75
75
|
")\n",
|
76
76
|
"\n",
|
77
77
|
"window.addEventListener('resize', function() {\n",
|
78
|
-
" Plotly.Plots.resize(document.getElementById('
|
78
|
+
" Plotly.Plots.resize(document.getElementById('1cecf7c8-43d7-4f4f-ad00-5c94beb27c4f'))\n",
|
79
79
|
"})\n",
|
80
80
|
" }) \n",
|
81
81
|
"</script>"
|
82
82
|
],
|
83
83
|
"text/plain": [
|
84
|
-
"#<Plotly::Offline::HTML:
|
84
|
+
"#<Plotly::Offline::HTML:0x00007f8ee41e4ae0 @id=\"1cecf7c8-43d7-4f4f-ad00-5c94beb27c4f\", @data=[{:type=>:table, :header=>{:values=>[\"\", :step0, :step1, :step2, :step3, :step4, :total]}, :cells=>{:values=>[[:rice_total, :kake, :koji, :alcohol, :water, :lactic_acid], [32.0, \"\", 32, \"\", 112, 0.733], [60.0, 60, \"\", \"\", \"\", \"\"], [184.0, 138, 46, \"\", 183, \"\"], [275.0, 225, 50, \"\", 367, \"\"], [\"\", \"\", \"\", \"\", 117, \"\"], [551.0, 423, 128, \"\", 779, 0.733]]}}], @layout={:height=>350}, @config={:linkText=>\"Export to plot.ly\", :showLink=>true}, @embedded=true>"
|
85
85
|
]
|
86
86
|
},
|
87
87
|
"metadata": {},
|
@@ -103,25 +103,25 @@
|
|
103
103
|
" </script>\n",
|
104
104
|
"\n",
|
105
105
|
"\n",
|
106
|
-
"<div id=\"
|
106
|
+
"<div id=\"50ae5125-17db-4960-9283-3bf6f2f55fd2\" style=\"height: 100%; width: 100%;\"></div>\n",
|
107
107
|
"\n",
|
108
108
|
"<script>\n",
|
109
109
|
" require(['plotly'], function(Plotly) { \n",
|
110
110
|
"Plotly.newPlot(\n",
|
111
|
-
" '
|
112
|
-
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"
|
111
|
+
" '50ae5125-17db-4960-9283-3bf6f2f55fd2',\n",
|
112
|
+
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"step0\",\"step1\",\"step2\",\"step3\",\"step4\",\"total\"]},\"cells\":{\"values\":[[\"rice_total\",\"kake\",\"koji\",\"alcohol\",\"water\",\"lactic_acid\"],[63.0,42,21,\"\",77,0.524],[143.0,98,45,\"\",122,\"\"],[254.0,190,64,\"\",302,\"\"],[440.0,366,74,\"\",599,\"\"],[\"\",\"\",\"\",405,\"\",\"\"],[900.0,696,204,405,1100,0.524]]}}],\n",
|
113
113
|
" {\"height\":350},\n",
|
114
114
|
" {\"linkText\":\"Export to plot.ly\",\"showLink\":true}\n",
|
115
115
|
")\n",
|
116
116
|
"\n",
|
117
117
|
"window.addEventListener('resize', function() {\n",
|
118
|
-
" Plotly.Plots.resize(document.getElementById('
|
118
|
+
" Plotly.Plots.resize(document.getElementById('50ae5125-17db-4960-9283-3bf6f2f55fd2'))\n",
|
119
119
|
"})\n",
|
120
120
|
" }) \n",
|
121
121
|
"</script>"
|
122
122
|
],
|
123
123
|
"text/plain": [
|
124
|
-
"#<Plotly::Offline::HTML:
|
124
|
+
"#<Plotly::Offline::HTML:0x00007f8ee30bb200 @id=\"50ae5125-17db-4960-9283-3bf6f2f55fd2\", @data=[{:type=>:table, :header=>{:values=>[\"\", :step0, :step1, :step2, :step3, :step4, :total]}, :cells=>{:values=>[[:rice_total, :kake, :koji, :alcohol, :water, :lactic_acid], [63.0, 42, 21, \"\", 77, 0.524], [143.0, 98, 45, \"\", 122, \"\"], [254.0, 190, 64, \"\", 302, \"\"], [440.0, 366, 74, \"\", 599, \"\"], [\"\", \"\", \"\", 405, \"\", \"\"], [900.0, 696, 204, 405, 1100, 0.524]]}}], @layout={:height=>350}, @config={:linkText=>\"Export to plot.ly\", :showLink=>true}, @embedded=true>"
|
125
125
|
]
|
126
126
|
},
|
127
127
|
"metadata": {},
|
@@ -143,25 +143,25 @@
|
|
143
143
|
" </script>\n",
|
144
144
|
"\n",
|
145
145
|
"\n",
|
146
|
-
"<div id=\"
|
146
|
+
"<div id=\"00063311-2316-476f-8a4d-78286c8c247f\" style=\"height: 100%; width: 100%;\"></div>\n",
|
147
147
|
"\n",
|
148
148
|
"<script>\n",
|
149
149
|
" require(['plotly'], function(Plotly) { \n",
|
150
150
|
"Plotly.newPlot(\n",
|
151
|
-
" '
|
152
|
-
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"
|
151
|
+
" '00063311-2316-476f-8a4d-78286c8c247f',\n",
|
152
|
+
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"step0\",\"step1\",\"step2\",\"step3\",\"step4\",\"total\"]},\"cells\":{\"values\":[[\"rice_total\",\"kake\",\"koji\",\"alcohol\",\"water\",\"lactic_acid\"],[59.0,41,18,\"\",63,0.432],[126.0,90,36,\"\",117,\"\"],[248.0,194,54,\"\",297,\"\"],[396.0,324,72,\"\",567,\"\"],[72.0,72,\"\",\"\",108,\"\"],[901.0,721,180,\"\",1152,0.432]]}}],\n",
|
153
153
|
" {\"height\":350},\n",
|
154
154
|
" {\"linkText\":\"Export to plot.ly\",\"showLink\":true}\n",
|
155
155
|
")\n",
|
156
156
|
"\n",
|
157
157
|
"window.addEventListener('resize', function() {\n",
|
158
|
-
" Plotly.Plots.resize(document.getElementById('
|
158
|
+
" Plotly.Plots.resize(document.getElementById('00063311-2316-476f-8a4d-78286c8c247f'))\n",
|
159
159
|
"})\n",
|
160
160
|
" }) \n",
|
161
161
|
"</script>"
|
162
162
|
],
|
163
163
|
"text/plain": [
|
164
|
-
"#<Plotly::Offline::HTML:
|
164
|
+
"#<Plotly::Offline::HTML:0x00007f8ee42316b0 @id=\"00063311-2316-476f-8a4d-78286c8c247f\", @data=[{:type=>:table, :header=>{:values=>[\"\", :step0, :step1, :step2, :step3, :step4, :total]}, :cells=>{:values=>[[:rice_total, :kake, :koji, :alcohol, :water, :lactic_acid], [59.0, 41, 18, \"\", 63, 0.432], [126.0, 90, 36, \"\", 117, \"\"], [248.0, 194, 54, \"\", 297, \"\"], [396.0, 324, 72, \"\", 567, \"\"], [72.0, 72, \"\", \"\", 108, \"\"], [901.0, 721, 180, \"\", 1152, 0.432]]}}], @layout={:height=>350}, @config={:linkText=>\"Export to plot.ly\", :showLink=>true}, @embedded=true>"
|
165
165
|
]
|
166
166
|
},
|
167
167
|
"metadata": {},
|
@@ -183,25 +183,25 @@
|
|
183
183
|
" </script>\n",
|
184
184
|
"\n",
|
185
185
|
"\n",
|
186
|
-
"<div id=\"
|
186
|
+
"<div id=\"adbe42d9-3046-4561-bd92-1494fc4c0b9e\" style=\"height: 100%; width: 100%;\"></div>\n",
|
187
187
|
"\n",
|
188
188
|
"<script>\n",
|
189
189
|
" require(['plotly'], function(Plotly) { \n",
|
190
190
|
"Plotly.newPlot(\n",
|
191
|
-
" '
|
192
|
-
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"
|
191
|
+
" 'adbe42d9-3046-4561-bd92-1494fc4c0b9e',\n",
|
192
|
+
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"step0\",\"step1\",\"step2\",\"step3\",\"step4\",\"total\"]},\"cells\":{\"values\":[[\"rice_total\",\"kake\",\"koji\",\"alcohol\",\"water\",\"lactic_acid\"],[63.0,42,21,\"\",77,0.524],[143.0,98,45,\"\",122,\"\"],[254.0,190,64,\"\",302,\"\"],[440.0,366,74,\"\",599,\"\"],[\"\",\"\",\"\",405,\"\",\"\"],[900.0,696,204,405,1100,0.524]]}}],\n",
|
193
193
|
" {\"height\":350},\n",
|
194
194
|
" {\"linkText\":\"Export to plot.ly\",\"showLink\":true}\n",
|
195
195
|
")\n",
|
196
196
|
"\n",
|
197
197
|
"window.addEventListener('resize', function() {\n",
|
198
|
-
" Plotly.Plots.resize(document.getElementById('
|
198
|
+
" Plotly.Plots.resize(document.getElementById('adbe42d9-3046-4561-bd92-1494fc4c0b9e'))\n",
|
199
199
|
"})\n",
|
200
200
|
" }) \n",
|
201
201
|
"</script>"
|
202
202
|
],
|
203
203
|
"text/plain": [
|
204
|
-
"#<Plotly::Offline::HTML:
|
204
|
+
"#<Plotly::Offline::HTML:0x00007f8ee3905f00 @id=\"adbe42d9-3046-4561-bd92-1494fc4c0b9e\", @data=[{:type=>:table, :header=>{:values=>[\"\", :step0, :step1, :step2, :step3, :step4, :total]}, :cells=>{:values=>[[:rice_total, :kake, :koji, :alcohol, :water, :lactic_acid], [63.0, 42, 21, \"\", 77, 0.524], [143.0, 98, 45, \"\", 122, \"\"], [254.0, 190, 64, \"\", 302, \"\"], [440.0, 366, 74, \"\", 599, \"\"], [\"\", \"\", \"\", 405, \"\", \"\"], [900.0, 696, 204, 405, 1100, 0.524]]}}], @layout={:height=>350}, @config={:linkText=>\"Export to plot.ly\", :showLink=>true}, @embedded=true>"
|
205
205
|
]
|
206
206
|
},
|
207
207
|
"metadata": {},
|
@@ -223,25 +223,25 @@
|
|
223
223
|
" </script>\n",
|
224
224
|
"\n",
|
225
225
|
"\n",
|
226
|
-
"<div id=\"
|
226
|
+
"<div id=\"3c251bc3-187f-4388-884c-d6b4de38d6ee\" style=\"height: 100%; width: 100%;\"></div>\n",
|
227
227
|
"\n",
|
228
228
|
"<script>\n",
|
229
229
|
" require(['plotly'], function(Plotly) { \n",
|
230
230
|
"Plotly.newPlot(\n",
|
231
|
-
" '
|
232
|
-
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"
|
231
|
+
" '3c251bc3-187f-4388-884c-d6b4de38d6ee',\n",
|
232
|
+
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"step0\",\"step1\",\"step2\",\"step3\",\"step4\",\"total\"]},\"cells\":{\"values\":[[\"rice_total\",\"kake\",\"koji\",\"alcohol\",\"water\",\"lactic_acid\"],[59.0,41,18,\"\",63,0.432],[126.0,90,36,\"\",117,\"\"],[248.0,194,54,\"\",297,\"\"],[396.0,324,72,\"\",567,\"\"],[72.0,72,\"\",\"\",108,\"\"],[901.0,721,180,\"\",1152,0.432]]}}],\n",
|
233
233
|
" {\"height\":350},\n",
|
234
234
|
" {\"linkText\":\"Export to plot.ly\",\"showLink\":true}\n",
|
235
235
|
")\n",
|
236
236
|
"\n",
|
237
237
|
"window.addEventListener('resize', function() {\n",
|
238
|
-
" Plotly.Plots.resize(document.getElementById('
|
238
|
+
" Plotly.Plots.resize(document.getElementById('3c251bc3-187f-4388-884c-d6b4de38d6ee'))\n",
|
239
239
|
"})\n",
|
240
240
|
" }) \n",
|
241
241
|
"</script>"
|
242
242
|
],
|
243
243
|
"text/plain": [
|
244
|
-
"#<Plotly::Offline::HTML:
|
244
|
+
"#<Plotly::Offline::HTML:0x00007f8ee42bfca8 @id=\"3c251bc3-187f-4388-884c-d6b4de38d6ee\", @data=[{:type=>:table, :header=>{:values=>[\"\", :step0, :step1, :step2, :step3, :step4, :total]}, :cells=>{:values=>[[:rice_total, :kake, :koji, :alcohol, :water, :lactic_acid], [59.0, 41, 18, \"\", 63, 0.432], [126.0, 90, 36, \"\", 117, \"\"], [248.0, 194, 54, \"\", 297, \"\"], [396.0, 324, 72, \"\", 567, \"\"], [72.0, 72, \"\", \"\", 108, \"\"], [901.0, 721, 180, \"\", 1152, 0.432]]}}], @layout={:height=>350}, @config={:linkText=>\"Export to plot.ly\", :showLink=>true}, @embedded=true>"
|
245
245
|
]
|
246
246
|
},
|
247
247
|
"metadata": {},
|
@@ -256,25 +256,25 @@
|
|
256
256
|
" </script>\n",
|
257
257
|
"\n",
|
258
258
|
"\n",
|
259
|
-
"<div id=\"
|
259
|
+
"<div id=\"7827c4c5-31ef-4cf0-ad25-0f468ee99fef\" style=\"height: 100%; width: 100%;\"></div>\n",
|
260
260
|
"\n",
|
261
261
|
"<script>\n",
|
262
262
|
" require(['plotly'], function(Plotly) { \n",
|
263
263
|
"Plotly.newPlot(\n",
|
264
|
-
" '
|
265
|
-
" [{\"type\":\"table\",\"header\":{\"values\":[\"date\",\"moto_koji\",\"moromi_koji\",\"moto\",\"soe\",\"naka\",\"tome\",\"yodan\"]},\"cells\":{\"values\":[[\"02/20\",\"02/21\",\"02/22\",\"02/23\",\"02/24\",\"02/25\",\"02/26\",\"02/27\",\"02/28\",\"02/29\",\"03/01\",\"03/02\",\"03/03\",\"03/04\",\"03/05\",\"03/06\",\"03/07\",\"03/08\",\"03/09\",\"03/10\",\"03/11\",\"03/12\",\"03/13\",\"03/14\",\"03/15\",\"03/16\",\"03/17\",\"03/18\",\"03/19\",\"03/20\",\"03/21\",\"03/22\",\"03/23\",\"03/24\",\"03/25\",\"03/26\",\"03/27\",\"03/28\",\"03/29\",\"03/30\",\"03/31\",\"04/01\",\"04/02\",\"04/03\",\"04/04\",\"04/05\",\"04/06\",\"04/07\",\"04/08\",\"04/09\",\"04/10\",\"04/11\",\"04/12\",\"04/13\",\"04/14\",\"04/15\"],[\"仕3: 21\\u003cbr\\u003e仕4: 18\",\"\",\"\",\"
|
264
|
+
" '7827c4c5-31ef-4cf0-ad25-0f468ee99fef',\n",
|
265
|
+
" [{\"type\":\"table\",\"header\":{\"values\":[\"date\",\"moto_koji\",\"moromi_koji\",\"moto\",\"soe\",\"naka\",\"tome\",\"yodan\"]},\"cells\":{\"values\":[[\"02/20\",\"02/21\",\"02/22\",\"02/23\",\"02/24\",\"02/25\",\"02/26\",\"02/27\",\"02/28\",\"02/29\",\"03/01\",\"03/02\",\"03/03\",\"03/04\",\"03/05\",\"03/06\",\"03/07\",\"03/08\",\"03/09\",\"03/10\",\"03/11\",\"03/12\",\"03/13\",\"03/14\",\"03/15\",\"03/16\",\"03/17\",\"03/18\",\"03/19\",\"03/20\",\"03/21\",\"03/22\",\"03/23\",\"03/24\",\"03/25\",\"03/26\",\"03/27\",\"03/28\",\"03/29\",\"03/30\",\"03/31\",\"04/01\",\"04/02\",\"04/03\",\"04/04\",\"04/05\",\"04/06\",\"04/07\",\"04/08\",\"04/09\",\"04/10\",\"04/11\",\"04/12\",\"04/13\",\"04/14\",\"04/15\"],[\"仕3: 21\\u003cbr\\u003e仕4: 18\",[],[],[],\"仕1: 140\",\"\",[],\"仕2: 128\\u003cbr\\u003e仕5: 21\\u003cbr\\u003e仕6: 18\",[],[],[],\"\",\"\",\"\",\"\",[],\"\",\"\",\"\",[],\"\",\"\",\"\",\"\",[],\"\",[],\"\",\"\",\"\",\"\",[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],\"\",[],[],[],[],[],[],\"\"],[\"\",[],[],[],\"\",\"\",[],\"\",[],[],[],\"仕3: 183\",\"\",\"\",\"仕4: 162\",[],\"\",\"\",\"仕5: 183\",[],\"\",\"仕6: 162\",\"\",\"\",[],\"\",[],\"\",\"\",\"\",\"\",[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],\"\",[],[],[],[],[],[],\"\"],[\"\",[],[],[],\"\",\"仕3: 42\\u003cbr\\u003e仕4: 41\",[],\"\",[],[],[],\"\",\"仕5: 42\\u003cbr\\u003e仕6: 41\",\"\",\"\",[],\"\",\"\",\"\",[],\"\",\"\",\"\",\"\",[],\"\",[],\"\",\"\",\"\",\"\",[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],\"\",[],[],[],[],[],[],\"\"],[\"\",[],[],[],\"\",\"\",[],\"\",[],[],[],\"仕1: 65\",\"\",\"仕2: 60\",\"\",[],\"\",\"\",\"仕3: 98\",[],\"仕4: 90\",\"\",\"\",\"\",[],\"仕5: 98\",[],\"仕6: 90\",\"\",\"\",\"\",[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],\"\",[],[],[],[],[],[],\"\"],[\"\",[],[],[],\"\",\"\",[],\"\",[],[],[],\"\",\"\",\"仕1: 150\",\"\",[],\"仕2: 138\",\"\",\"\",[],\"仕3: 190\",\"\",\"仕4: 194\",\"\",[],\"\",[],\"仕5: 190\",\"\",\"仕6: 194\",\"\",[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],\"\",[],[],[],[],[],[],\"\"],[\"\",[],[],[],\"\",\"\",[],\"\",[],[],[],\"\",\"\",\"\",\"仕1: 245\",[],\"\",\"仕2: 225\",\"\",[],\"\",\"仕3: 366\",\"\",\"仕4: 324\",[],\"\",[],\"\",\"仕5: 366\",\"\",\"仕6: 324\",[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],\"\",[],[],[],[],[],[],\"\"],[\"\",[],[],[],\"\",\"\",[],\"\",[],[],[],\"\",\"\",\"\",\"\",[],\"\",\"\",\"\",[],\"\",\"\",\"\",\"\",[],\"\",[],\"\",\"\",\"\",\"\",[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],\"仕4: 72\",[],[],[],[],[],[],\"仕6: 72\"]]}}],\n",
|
266
266
|
" {\"height\":1000},\n",
|
267
267
|
" {\"linkText\":\"Export to plot.ly\",\"showLink\":true}\n",
|
268
268
|
")\n",
|
269
269
|
"\n",
|
270
270
|
"window.addEventListener('resize', function() {\n",
|
271
|
-
" Plotly.Plots.resize(document.getElementById('
|
271
|
+
" Plotly.Plots.resize(document.getElementById('7827c4c5-31ef-4cf0-ad25-0f468ee99fef'))\n",
|
272
272
|
"})\n",
|
273
273
|
" }) \n",
|
274
274
|
"</script>"
|
275
275
|
],
|
276
276
|
"text/plain": [
|
277
|
-
"#<Plotly::Offline::HTML:
|
277
|
+
"#<Plotly::Offline::HTML:0x00007f8ee4476268 @id=\"7827c4c5-31ef-4cf0-ad25-0f468ee99fef\", @data=[{:type=>:table, :header=>{:values=>[:date, :moto_koji, :moromi_koji, :moto, :soe, :naka, :tome, :yodan]}, :cells=>{:values=>[[\"02/20\", \"02/21\", \"02/22\", \"02/23\", \"02/24\", \"02/25\", \"02/26\", \"02/27\", \"02/28\", \"02/29\", \"03/01\", \"03/02\", \"03/03\", \"03/04\", \"03/05\", \"03/06\", \"03/07\", \"03/08\", \"03/09\", \"03/10\", \"03/11\", \"03/12\", \"03/13\", \"03/14\", \"03/15\", \"03/16\", \"03/17\", \"03/18\", \"03/19\", \"03/20\", \"03/21\", \"03/22\", \"03/23\", \"03/24\", \"03/25\", \"03/26\", \"03/27\", \"03/28\", \"03/29\", \"03/30\", \"03/31\", \"04/01\", \"04/02\", \"04/03\", \"04/04\", \"04/05\", \"04/06\", \"04/07\", \"04/08\", \"04/09\", \"04/10\", \"04/11\", \"04/12\", \"04/13\", \"04/14\", \"04/15\"], [\"仕3: 21<br>仕4: 18\", [], [], [], \"仕1: 140\", \"\", [], \"仕2: 128<br>仕5: 21<br>仕6: 18\", [], [], [], \"\", \"\", \"\", \"\", [], \"\", \"\", \"\", [], \"\", \"\", \"\", \"\", [], \"\", [], \"\", \"\", \"\", \"\", [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], \"\", [], [], [], [], [], [], \"\"], [\"\", [], [], [], \"\", \"\", [], \"\", [], [], [], \"仕3: 183\", \"\", \"\", \"仕4: 162\", [], \"\", \"\", \"仕5: 183\", [], \"\", \"仕6: 162\", \"\", \"\", [], \"\", [], \"\", \"\", \"\", \"\", [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], \"\", [], [], [], [], [], [], \"\"], [\"\", [], [], [], \"\", \"仕3: 42<br>仕4: 41\", [], \"\", [], [], [], \"\", \"仕5: 42<br>仕6: 41\", \"\", \"\", [], \"\", \"\", \"\", [], \"\", \"\", \"\", \"\", [], \"\", [], \"\", \"\", \"\", \"\", [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], \"\", [], [], [], [], [], [], \"\"], [\"\", [], [], [], \"\", \"\", [], \"\", [], [], [], \"仕1: 65\", \"\", \"仕2: 60\", \"\", [], \"\", \"\", \"仕3: 98\", [], \"仕4: 90\", \"\", \"\", \"\", [], \"仕5: 98\", [], \"仕6: 90\", \"\", \"\", \"\", [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], \"\", [], [], [], [], [], [], \"\"], [\"\", [], [], [], \"\", \"\", [], \"\", [], [], [], \"\", \"\", \"仕1: 150\", \"\", [], \"仕2: 138\", \"\", \"\", [], \"仕3: 190\", \"\", \"仕4: 194\", \"\", [], \"\", [], \"仕5: 190\", \"\", \"仕6: 194\", \"\", [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], \"\", [], [], [], [], [], [], \"\"], [\"\", [], [], [], \"\", \"\", [], \"\", [], [], [], \"\", \"\", \"\", \"仕1: 245\", [], \"\", \"仕2: 225\", \"\", [], \"\", \"仕3: 366\", \"\", \"仕4: 324\", [], \"\", [], \"\", \"仕5: 366\", \"\", \"仕6: 324\", [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], \"\", [], [], [], [], [], [], \"\"], [\"\", [], [], [], \"\", \"\", [], \"\", [], [], [], \"\", \"\", \"\", \"\", [], \"\", \"\", \"\", [], \"\", \"\", \"\", \"\", [], \"\", [], \"\", \"\", \"\", \"\", [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], \"仕4: 72\", [], [], [], [], [], [], \"仕6: 72\"]]}}], @layout={:height=>1000}, @config={:linkText=>\"Export to plot.ly\", :showLink=>true}, @embedded=true>"
|
278
278
|
]
|
279
279
|
},
|
280
280
|
"metadata": {},
|
@@ -283,7 +283,7 @@
|
|
283
283
|
{
|
284
284
|
"data": {
|
285
285
|
"text/plain": [
|
286
|
-
"#<CZTop::Socket::PUB:
|
286
|
+
"#<CZTop::Socket::PUB:0x7f8ee27f9c60 last_endpoint=\"tcp://127.0.0.1:61646\">"
|
287
287
|
]
|
288
288
|
},
|
289
289
|
"execution_count": 1,
|
data/example/calendar_file.ipynb
CHANGED
@@ -23,25 +23,25 @@
|
|
23
23
|
" </script>\n",
|
24
24
|
"\n",
|
25
25
|
"\n",
|
26
|
-
"<div id=\"
|
26
|
+
"<div id=\"5e047d21-49af-4ca2-9f43-8a2561c3ab6a\" style=\"height: 100%; width: 100%;\"></div>\n",
|
27
27
|
"\n",
|
28
28
|
"<script>\n",
|
29
29
|
" require(['plotly'], function(Plotly) { \n",
|
30
30
|
"Plotly.newPlot(\n",
|
31
|
-
" '
|
32
|
-
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"
|
31
|
+
" '5e047d21-49af-4ca2-9f43-8a2561c3ab6a',\n",
|
32
|
+
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"step0\",\"step1\",\"step2\",\"step3\",\"step4\",\"total\"]},\"cells\":{\"values\":[[\"rice_total\",\"kake\",\"koji\",\"alcohol\",\"water\",\"lactic_acid\"],[35.0,\"\",35,\"\",123,0.8],[65.0,65,\"\",\"\",\"\",\"\"],[200.0,150,50,\"\",200,\"\"],[300.0,245,55,\"\",400,\"\"],[\"\",\"\",\"\",\"\",128,\"\"],[600.0,460,140,\"\",851,0.8]]}}],\n",
|
33
33
|
" {\"height\":350},\n",
|
34
34
|
" {\"linkText\":\"Export to plot.ly\",\"showLink\":true}\n",
|
35
35
|
")\n",
|
36
36
|
"\n",
|
37
37
|
"window.addEventListener('resize', function() {\n",
|
38
|
-
" Plotly.Plots.resize(document.getElementById('
|
38
|
+
" Plotly.Plots.resize(document.getElementById('5e047d21-49af-4ca2-9f43-8a2561c3ab6a'))\n",
|
39
39
|
"})\n",
|
40
40
|
" }) \n",
|
41
41
|
"</script>"
|
42
42
|
],
|
43
43
|
"text/plain": [
|
44
|
-
"#<Plotly::Offline::HTML:
|
44
|
+
"#<Plotly::Offline::HTML:0x00007fa15214a280 @id=\"5e047d21-49af-4ca2-9f43-8a2561c3ab6a\", @data=[{:type=>:table, :header=>{:values=>[\"\", :step0, :step1, :step2, :step3, :step4, :total]}, :cells=>{:values=>[[:rice_total, :kake, :koji, :alcohol, :water, :lactic_acid], [35.0, \"\", 35, \"\", 123, 0.8], [65.0, 65, \"\", \"\", \"\", \"\"], [200.0, 150, 50, \"\", 200, \"\"], [300.0, 245, 55, \"\", 400, \"\"], [\"\", \"\", \"\", \"\", 128, \"\"], [600.0, 460, 140, \"\", 851, 0.8]]}}], @layout={:height=>350}, @config={:linkText=>\"Export to plot.ly\", :showLink=>true}, @embedded=true>"
|
45
45
|
]
|
46
46
|
},
|
47
47
|
"metadata": {},
|
@@ -63,25 +63,25 @@
|
|
63
63
|
" </script>\n",
|
64
64
|
"\n",
|
65
65
|
"\n",
|
66
|
-
"<div id=\"
|
66
|
+
"<div id=\"4df5d5bf-cc9e-433c-ab5f-6633f24b7083\" style=\"height: 100%; width: 100%;\"></div>\n",
|
67
67
|
"\n",
|
68
68
|
"<script>\n",
|
69
69
|
" require(['plotly'], function(Plotly) { \n",
|
70
70
|
"Plotly.newPlot(\n",
|
71
|
-
" '
|
72
|
-
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"
|
71
|
+
" '4df5d5bf-cc9e-433c-ab5f-6633f24b7083',\n",
|
72
|
+
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"step0\",\"step1\",\"step2\",\"step3\",\"step4\",\"total\"]},\"cells\":{\"values\":[[\"rice_total\",\"kake\",\"koji\",\"alcohol\",\"water\",\"lactic_acid\"],[32.0,\"\",32,\"\",112,0.733],[60.0,60,\"\",\"\",\"\",\"\"],[184.0,138,46,\"\",183,\"\"],[275.0,225,50,\"\",367,\"\"],[\"\",\"\",\"\",\"\",117,\"\"],[551.0,423,128,\"\",779,0.733]]}}],\n",
|
73
73
|
" {\"height\":350},\n",
|
74
74
|
" {\"linkText\":\"Export to plot.ly\",\"showLink\":true}\n",
|
75
75
|
")\n",
|
76
76
|
"\n",
|
77
77
|
"window.addEventListener('resize', function() {\n",
|
78
|
-
" Plotly.Plots.resize(document.getElementById('
|
78
|
+
" Plotly.Plots.resize(document.getElementById('4df5d5bf-cc9e-433c-ab5f-6633f24b7083'))\n",
|
79
79
|
"})\n",
|
80
80
|
" }) \n",
|
81
81
|
"</script>"
|
82
82
|
],
|
83
83
|
"text/plain": [
|
84
|
-
"#<Plotly::Offline::HTML:
|
84
|
+
"#<Plotly::Offline::HTML:0x00007fa1521b03a0 @id=\"4df5d5bf-cc9e-433c-ab5f-6633f24b7083\", @data=[{:type=>:table, :header=>{:values=>[\"\", :step0, :step1, :step2, :step3, :step4, :total]}, :cells=>{:values=>[[:rice_total, :kake, :koji, :alcohol, :water, :lactic_acid], [32.0, \"\", 32, \"\", 112, 0.733], [60.0, 60, \"\", \"\", \"\", \"\"], [184.0, 138, 46, \"\", 183, \"\"], [275.0, 225, 50, \"\", 367, \"\"], [\"\", \"\", \"\", \"\", 117, \"\"], [551.0, 423, 128, \"\", 779, 0.733]]}}], @layout={:height=>350}, @config={:linkText=>\"Export to plot.ly\", :showLink=>true}, @embedded=true>"
|
85
85
|
]
|
86
86
|
},
|
87
87
|
"metadata": {},
|
@@ -103,25 +103,25 @@
|
|
103
103
|
" </script>\n",
|
104
104
|
"\n",
|
105
105
|
"\n",
|
106
|
-
"<div id=\"
|
106
|
+
"<div id=\"97977830-1e85-4aba-903e-6c9fea5cb810\" style=\"height: 100%; width: 100%;\"></div>\n",
|
107
107
|
"\n",
|
108
108
|
"<script>\n",
|
109
109
|
" require(['plotly'], function(Plotly) { \n",
|
110
110
|
"Plotly.newPlot(\n",
|
111
|
-
" '
|
112
|
-
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"
|
111
|
+
" '97977830-1e85-4aba-903e-6c9fea5cb810',\n",
|
112
|
+
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"step0\",\"step1\",\"step2\",\"step3\",\"step4\",\"total\"]},\"cells\":{\"values\":[[\"rice_total\",\"kake\",\"koji\",\"alcohol\",\"water\",\"lactic_acid\"],[63.0,42,21,\"\",77,0.524],[143.0,98,45,\"\",122,\"\"],[254.0,190,64,\"\",302,\"\"],[440.0,366,74,\"\",599,\"\"],[\"\",\"\",\"\",405,\"\",\"\"],[900.0,696,204,405,1100,0.524]]}}],\n",
|
113
113
|
" {\"height\":350},\n",
|
114
114
|
" {\"linkText\":\"Export to plot.ly\",\"showLink\":true}\n",
|
115
115
|
")\n",
|
116
116
|
"\n",
|
117
117
|
"window.addEventListener('resize', function() {\n",
|
118
|
-
" Plotly.Plots.resize(document.getElementById('
|
118
|
+
" Plotly.Plots.resize(document.getElementById('97977830-1e85-4aba-903e-6c9fea5cb810'))\n",
|
119
119
|
"})\n",
|
120
120
|
" }) \n",
|
121
121
|
"</script>"
|
122
122
|
],
|
123
123
|
"text/plain": [
|
124
|
-
"#<Plotly::Offline::HTML:
|
124
|
+
"#<Plotly::Offline::HTML:0x00007fa150a6c6d0 @id=\"97977830-1e85-4aba-903e-6c9fea5cb810\", @data=[{:type=>:table, :header=>{:values=>[\"\", :step0, :step1, :step2, :step3, :step4, :total]}, :cells=>{:values=>[[:rice_total, :kake, :koji, :alcohol, :water, :lactic_acid], [63.0, 42, 21, \"\", 77, 0.524], [143.0, 98, 45, \"\", 122, \"\"], [254.0, 190, 64, \"\", 302, \"\"], [440.0, 366, 74, \"\", 599, \"\"], [\"\", \"\", \"\", 405, \"\", \"\"], [900.0, 696, 204, 405, 1100, 0.524]]}}], @layout={:height=>350}, @config={:linkText=>\"Export to plot.ly\", :showLink=>true}, @embedded=true>"
|
125
125
|
]
|
126
126
|
},
|
127
127
|
"metadata": {},
|
@@ -143,25 +143,25 @@
|
|
143
143
|
" </script>\n",
|
144
144
|
"\n",
|
145
145
|
"\n",
|
146
|
-
"<div id=\"
|
146
|
+
"<div id=\"a86e4956-0bd5-40b2-a333-b2e8d3973816\" style=\"height: 100%; width: 100%;\"></div>\n",
|
147
147
|
"\n",
|
148
148
|
"<script>\n",
|
149
149
|
" require(['plotly'], function(Plotly) { \n",
|
150
150
|
"Plotly.newPlot(\n",
|
151
|
-
" '
|
152
|
-
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"
|
151
|
+
" 'a86e4956-0bd5-40b2-a333-b2e8d3973816',\n",
|
152
|
+
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"step0\",\"step1\",\"step2\",\"step3\",\"step4\",\"total\"]},\"cells\":{\"values\":[[\"rice_total\",\"kake\",\"koji\",\"alcohol\",\"water\",\"lactic_acid\"],[59.0,41,18,\"\",63,0.432],[126.0,90,36,\"\",117,\"\"],[248.0,194,54,\"\",297,\"\"],[396.0,324,72,\"\",567,\"\"],[72.0,72,\"\",\"\",108,\"\"],[901.0,721,180,\"\",1152,0.432]]}}],\n",
|
153
153
|
" {\"height\":350},\n",
|
154
154
|
" {\"linkText\":\"Export to plot.ly\",\"showLink\":true}\n",
|
155
155
|
")\n",
|
156
156
|
"\n",
|
157
157
|
"window.addEventListener('resize', function() {\n",
|
158
|
-
" Plotly.Plots.resize(document.getElementById('
|
158
|
+
" Plotly.Plots.resize(document.getElementById('a86e4956-0bd5-40b2-a333-b2e8d3973816'))\n",
|
159
159
|
"})\n",
|
160
160
|
" }) \n",
|
161
161
|
"</script>"
|
162
162
|
],
|
163
163
|
"text/plain": [
|
164
|
-
"#<Plotly::Offline::HTML:
|
164
|
+
"#<Plotly::Offline::HTML:0x00007fa152240fb8 @id=\"a86e4956-0bd5-40b2-a333-b2e8d3973816\", @data=[{:type=>:table, :header=>{:values=>[\"\", :step0, :step1, :step2, :step3, :step4, :total]}, :cells=>{:values=>[[:rice_total, :kake, :koji, :alcohol, :water, :lactic_acid], [59.0, 41, 18, \"\", 63, 0.432], [126.0, 90, 36, \"\", 117, \"\"], [248.0, 194, 54, \"\", 297, \"\"], [396.0, 324, 72, \"\", 567, \"\"], [72.0, 72, \"\", \"\", 108, \"\"], [901.0, 721, 180, \"\", 1152, 0.432]]}}], @layout={:height=>350}, @config={:linkText=>\"Export to plot.ly\", :showLink=>true}, @embedded=true>"
|
165
165
|
]
|
166
166
|
},
|
167
167
|
"metadata": {},
|
@@ -183,25 +183,25 @@
|
|
183
183
|
" </script>\n",
|
184
184
|
"\n",
|
185
185
|
"\n",
|
186
|
-
"<div id=\"
|
186
|
+
"<div id=\"2bd27e5a-9e98-43df-91f4-2c7454a8588d\" style=\"height: 100%; width: 100%;\"></div>\n",
|
187
187
|
"\n",
|
188
188
|
"<script>\n",
|
189
189
|
" require(['plotly'], function(Plotly) { \n",
|
190
190
|
"Plotly.newPlot(\n",
|
191
|
-
" '
|
192
|
-
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"
|
191
|
+
" '2bd27e5a-9e98-43df-91f4-2c7454a8588d',\n",
|
192
|
+
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"step0\",\"step1\",\"step2\",\"step3\",\"step4\",\"total\"]},\"cells\":{\"values\":[[\"rice_total\",\"kake\",\"koji\",\"alcohol\",\"water\",\"lactic_acid\"],[63.0,42,21,\"\",77,0.524],[143.0,98,45,\"\",122,\"\"],[254.0,190,64,\"\",302,\"\"],[440.0,366,74,\"\",599,\"\"],[\"\",\"\",\"\",405,\"\",\"\"],[900.0,696,204,405,1100,0.524]]}}],\n",
|
193
193
|
" {\"height\":350},\n",
|
194
194
|
" {\"linkText\":\"Export to plot.ly\",\"showLink\":true}\n",
|
195
195
|
")\n",
|
196
196
|
"\n",
|
197
197
|
"window.addEventListener('resize', function() {\n",
|
198
|
-
" Plotly.Plots.resize(document.getElementById('
|
198
|
+
" Plotly.Plots.resize(document.getElementById('2bd27e5a-9e98-43df-91f4-2c7454a8588d'))\n",
|
199
199
|
"})\n",
|
200
200
|
" }) \n",
|
201
201
|
"</script>"
|
202
202
|
],
|
203
203
|
"text/plain": [
|
204
|
-
"#<Plotly::Offline::HTML:
|
204
|
+
"#<Plotly::Offline::HTML:0x00007fa150aa7e38 @id=\"2bd27e5a-9e98-43df-91f4-2c7454a8588d\", @data=[{:type=>:table, :header=>{:values=>[\"\", :step0, :step1, :step2, :step3, :step4, :total]}, :cells=>{:values=>[[:rice_total, :kake, :koji, :alcohol, :water, :lactic_acid], [63.0, 42, 21, \"\", 77, 0.524], [143.0, 98, 45, \"\", 122, \"\"], [254.0, 190, 64, \"\", 302, \"\"], [440.0, 366, 74, \"\", 599, \"\"], [\"\", \"\", \"\", 405, \"\", \"\"], [900.0, 696, 204, 405, 1100, 0.524]]}}], @layout={:height=>350}, @config={:linkText=>\"Export to plot.ly\", :showLink=>true}, @embedded=true>"
|
205
205
|
]
|
206
206
|
},
|
207
207
|
"metadata": {},
|
@@ -223,25 +223,25 @@
|
|
223
223
|
" </script>\n",
|
224
224
|
"\n",
|
225
225
|
"\n",
|
226
|
-
"<div id=\"
|
226
|
+
"<div id=\"79b67b7e-38f0-4fb6-8b14-beadadc6ca45\" style=\"height: 100%; width: 100%;\"></div>\n",
|
227
227
|
"\n",
|
228
228
|
"<script>\n",
|
229
229
|
" require(['plotly'], function(Plotly) { \n",
|
230
230
|
"Plotly.newPlot(\n",
|
231
|
-
" '
|
232
|
-
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"
|
231
|
+
" '79b67b7e-38f0-4fb6-8b14-beadadc6ca45',\n",
|
232
|
+
" [{\"type\":\"table\",\"header\":{\"values\":[\"\",\"step0\",\"step1\",\"step2\",\"step3\",\"step4\",\"total\"]},\"cells\":{\"values\":[[\"rice_total\",\"kake\",\"koji\",\"alcohol\",\"water\",\"lactic_acid\"],[59.0,41,18,\"\",63,0.432],[126.0,90,36,\"\",117,\"\"],[248.0,194,54,\"\",297,\"\"],[396.0,324,72,\"\",567,\"\"],[72.0,72,\"\",\"\",108,\"\"],[901.0,721,180,\"\",1152,0.432]]}}],\n",
|
233
233
|
" {\"height\":350},\n",
|
234
234
|
" {\"linkText\":\"Export to plot.ly\",\"showLink\":true}\n",
|
235
235
|
")\n",
|
236
236
|
"\n",
|
237
237
|
"window.addEventListener('resize', function() {\n",
|
238
|
-
" Plotly.Plots.resize(document.getElementById('
|
238
|
+
" Plotly.Plots.resize(document.getElementById('79b67b7e-38f0-4fb6-8b14-beadadc6ca45'))\n",
|
239
239
|
"})\n",
|
240
240
|
" }) \n",
|
241
241
|
"</script>"
|
242
242
|
],
|
243
243
|
"text/plain": [
|
244
|
-
"#<Plotly::Offline::HTML:
|
244
|
+
"#<Plotly::Offline::HTML:0x00007fa14e2480f0 @id=\"79b67b7e-38f0-4fb6-8b14-beadadc6ca45\", @data=[{:type=>:table, :header=>{:values=>[\"\", :step0, :step1, :step2, :step3, :step4, :total]}, :cells=>{:values=>[[:rice_total, :kake, :koji, :alcohol, :water, :lactic_acid], [59.0, 41, 18, \"\", 63, 0.432], [126.0, 90, 36, \"\", 117, \"\"], [248.0, 194, 54, \"\", 297, \"\"], [396.0, 324, 72, \"\", 567, \"\"], [72.0, 72, \"\", \"\", 108, \"\"], [901.0, 721, 180, \"\", 1152, 0.432]]}}], @layout={:height=>350}, @config={:linkText=>\"Export to plot.ly\", :showLink=>true}, @embedded=true>"
|
245
245
|
]
|
246
246
|
},
|
247
247
|
"metadata": {},
|
@@ -256,25 +256,25 @@
|
|
256
256
|
" </script>\n",
|
257
257
|
"\n",
|
258
258
|
"\n",
|
259
|
-
"<div id=\"
|
259
|
+
"<div id=\"45c07cdb-e813-4f41-96c0-7c95174b7772\" style=\"height: 100%; width: 100%;\"></div>\n",
|
260
260
|
"\n",
|
261
261
|
"<script>\n",
|
262
262
|
" require(['plotly'], function(Plotly) { \n",
|
263
263
|
"Plotly.newPlot(\n",
|
264
|
-
" '
|
265
|
-
" [{\"type\":\"table\",\"header\":{\"values\":[\"date\",\"moto_koji\",\"moromi_koji\",\"moto\",\"soe\",\"naka\",\"tome\",\"yodan\"]},\"cells\":{\"values\":[[\"02/20\",\"02/21\",\"02/22\",\"02/23\",\"02/24\",\"02/25\",\"02/26\",\"02/27\",\"02/28\",\"02/29\",\"03/01\",\"03/02\",\"03/03\",\"03/04\",\"03/05\",\"03/06\",\"03/07\",\"03/08\",\"03/09\",\"03/10\",\"03/11\",\"03/12\",\"03/13\",\"03/14\",\"03/15\",\"03/16\",\"03/17\",\"03/18\",\"03/19\",\"03/20\",\"03/21\",\"03/22\",\"03/23\",\"03/24\",\"03/25\",\"03/26\",\"03/27\",\"03/28\",\"03/29\",\"03/30\",\"03/31\",\"04/01\",\"04/02\",\"04/03\",\"04/04\",\"04/05\",\"04/06\",\"04/07\",\"04/08\",\"04/09\",\"04/10\",\"04/11\",\"04/12\",\"04/13\",\"04/14\",\"04/15\"],[\"仕3: 21\\u003cbr\\u003e仕4: 18\",\"\",\"\",\"
|
264
|
+
" '45c07cdb-e813-4f41-96c0-7c95174b7772',\n",
|
265
|
+
" [{\"type\":\"table\",\"header\":{\"values\":[\"date\",\"moto_koji\",\"moromi_koji\",\"moto\",\"soe\",\"naka\",\"tome\",\"yodan\"]},\"cells\":{\"values\":[[\"02/20\",\"02/21\",\"02/22\",\"02/23\",\"02/24\",\"02/25\",\"02/26\",\"02/27\",\"02/28\",\"02/29\",\"03/01\",\"03/02\",\"03/03\",\"03/04\",\"03/05\",\"03/06\",\"03/07\",\"03/08\",\"03/09\",\"03/10\",\"03/11\",\"03/12\",\"03/13\",\"03/14\",\"03/15\",\"03/16\",\"03/17\",\"03/18\",\"03/19\",\"03/20\",\"03/21\",\"03/22\",\"03/23\",\"03/24\",\"03/25\",\"03/26\",\"03/27\",\"03/28\",\"03/29\",\"03/30\",\"03/31\",\"04/01\",\"04/02\",\"04/03\",\"04/04\",\"04/05\",\"04/06\",\"04/07\",\"04/08\",\"04/09\",\"04/10\",\"04/11\",\"04/12\",\"04/13\",\"04/14\",\"04/15\"],[\"仕3: 21\\u003cbr\\u003e仕4: 18\",[],[],[],\"仕1: 140\",\"\",[],\"仕2: 128\\u003cbr\\u003e仕5: 21\\u003cbr\\u003e仕6: 18\",[],[],[],\"\",\"\",\"\",\"\",[],\"\",\"\",[],[],\"\",\"\",\"\",\"\",[],[],[],\"\",[],\"\",\"\",[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],\"\",[],[],[],[],[],[],\"\"],[\"\",[],[],[],\"\",\"\",[],\"\",[],[],[],\"\",\"\",\"\",\"仕3: 183\\u003cbr\\u003e仕4: 162\",[],\"\",\"\",[],[],\"\",\"仕5: 183\\u003cbr\\u003e仕6: 162\",\"\",\"\",[],[],[],\"\",[],\"\",\"\",[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],\"\",[],[],[],[],[],[],\"\"],[\"\",[],[],[],\"\",\"仕3: 42\\u003cbr\\u003e仕4: 41\",[],\"\",[],[],[],\"\",\"仕5: 42\\u003cbr\\u003e仕6: 41\",\"\",\"\",[],\"\",\"\",[],[],\"\",\"\",\"\",\"\",[],[],[],\"\",[],\"\",\"\",[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],\"\",[],[],[],[],[],[],\"\"],[\"\",[],[],[],\"\",\"\",[],\"\",[],[],[],\"仕1: 65\",\"\",\"\",\"仕2: 60\",[],\"\",\"\",[],[],\"仕3: 98\\u003cbr\\u003e仕4: 90\",\"\",\"\",\"\",[],[],[],\"仕5: 98\\u003cbr\\u003e仕6: 90\",[],\"\",\"\",[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],\"\",[],[],[],[],[],[],\"\"],[\"\",[],[],[],\"\",\"\",[],\"\",[],[],[],\"\",\"\",\"仕1: 150\",\"\",[],\"仕2: 138\",\"\",[],[],\"\",\"\",\"仕3: 190\\u003cbr\\u003e仕4: 194\",\"\",[],[],[],\"\",[],\"仕5: 190\\u003cbr\\u003e仕6: 194\",\"\",[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],\"\",[],[],[],[],[],[],\"\"],[\"\",[],[],[],\"\",\"\",[],\"\",[],[],[],\"\",\"\",\"\",\"仕1: 245\",[],\"\",\"仕2: 225\",[],[],\"\",\"\",\"\",\"仕3: 366\\u003cbr\\u003e仕4: 324\",[],[],[],\"\",[],\"\",\"仕5: 366\\u003cbr\\u003e仕6: 324\",[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],\"\",[],[],[],[],[],[],\"\"],[\"\",[],[],[],\"\",\"\",[],\"\",[],[],[],\"\",\"\",\"\",\"\",[],\"\",\"\",[],[],\"\",\"\",\"\",\"\",[],[],[],\"\",[],\"\",\"\",[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],\"仕4: 72\",[],[],[],[],[],[],\"仕6: 72\"]]}}],\n",
|
266
266
|
" {\"height\":1000},\n",
|
267
267
|
" {\"linkText\":\"Export to plot.ly\",\"showLink\":true}\n",
|
268
268
|
")\n",
|
269
269
|
"\n",
|
270
270
|
"window.addEventListener('resize', function() {\n",
|
271
|
-
" Plotly.Plots.resize(document.getElementById('
|
271
|
+
" Plotly.Plots.resize(document.getElementById('45c07cdb-e813-4f41-96c0-7c95174b7772'))\n",
|
272
272
|
"})\n",
|
273
273
|
" }) \n",
|
274
274
|
"</script>"
|
275
275
|
],
|
276
276
|
"text/plain": [
|
277
|
-
"#<Plotly::Offline::HTML:
|
277
|
+
"#<Plotly::Offline::HTML:0x00007fa15191b140 @id=\"45c07cdb-e813-4f41-96c0-7c95174b7772\", @data=[{:type=>:table, :header=>{:values=>[:date, :moto_koji, :moromi_koji, :moto, :soe, :naka, :tome, :yodan]}, :cells=>{:values=>[[\"02/20\", \"02/21\", \"02/22\", \"02/23\", \"02/24\", \"02/25\", \"02/26\", \"02/27\", \"02/28\", \"02/29\", \"03/01\", \"03/02\", \"03/03\", \"03/04\", \"03/05\", \"03/06\", \"03/07\", \"03/08\", \"03/09\", \"03/10\", \"03/11\", \"03/12\", \"03/13\", \"03/14\", \"03/15\", \"03/16\", \"03/17\", \"03/18\", \"03/19\", \"03/20\", \"03/21\", \"03/22\", \"03/23\", \"03/24\", \"03/25\", \"03/26\", \"03/27\", \"03/28\", \"03/29\", \"03/30\", \"03/31\", \"04/01\", \"04/02\", \"04/03\", \"04/04\", \"04/05\", \"04/06\", \"04/07\", \"04/08\", \"04/09\", \"04/10\", \"04/11\", \"04/12\", \"04/13\", \"04/14\", \"04/15\"], [\"仕3: 21<br>仕4: 18\", [], [], [], \"仕1: 140\", \"\", [], \"仕2: 128<br>仕5: 21<br>仕6: 18\", [], [], [], \"\", \"\", \"\", \"\", [], \"\", \"\", [], [], \"\", \"\", \"\", \"\", [], [], [], \"\", [], \"\", \"\", [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], \"\", [], [], [], [], [], [], \"\"], [\"\", [], [], [], \"\", \"\", [], \"\", [], [], [], \"\", \"\", \"\", \"仕3: 183<br>仕4: 162\", [], \"\", \"\", [], [], \"\", \"仕5: 183<br>仕6: 162\", \"\", \"\", [], [], [], \"\", [], \"\", \"\", [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], \"\", [], [], [], [], [], [], \"\"], [\"\", [], [], [], \"\", \"仕3: 42<br>仕4: 41\", [], \"\", [], [], [], \"\", \"仕5: 42<br>仕6: 41\", \"\", \"\", [], \"\", \"\", [], [], \"\", \"\", \"\", \"\", [], [], [], \"\", [], \"\", \"\", [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], \"\", [], [], [], [], [], [], \"\"], [\"\", [], [], [], \"\", \"\", [], \"\", [], [], [], \"仕1: 65\", \"\", \"\", \"仕2: 60\", [], \"\", \"\", [], [], \"仕3: 98<br>仕4: 90\", \"\", \"\", \"\", [], [], [], \"仕5: 98<br>仕6: 90\", [], \"\", \"\", [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], \"\", [], [], [], [], [], [], \"\"], [\"\", [], [], [], \"\", \"\", [], \"\", [], [], [], \"\", \"\", \"仕1: 150\", \"\", [], \"仕2: 138\", \"\", [], [], \"\", \"\", \"仕3: 190<br>仕4: 194\", \"\", [], [], [], \"\", [], \"仕5: 190<br>仕6: 194\", \"\", [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], \"\", [], [], [], [], [], [], \"\"], [\"\", [], [], [], \"\", \"\", [], \"\", [], [], [], \"\", \"\", \"\", \"仕1: 245\", [], \"\", \"仕2: 225\", [], [], \"\", \"\", \"\", \"仕3: 366<br>仕4: 324\", [], [], [], \"\", [], \"\", \"仕5: 366<br>仕6: 324\", [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], \"\", [], [], [], [], [], [], \"\"], [\"\", [], [], [], \"\", \"\", [], \"\", [], [], [], \"\", \"\", \"\", \"\", [], \"\", \"\", [], [], \"\", \"\", \"\", \"\", [], [], [], \"\", [], \"\", \"\", [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], \"仕4: 72\", [], [], [], [], [], [], \"仕6: 72\"]]}}], @layout={:height=>1000}, @config={:linkText=>\"Export to plot.ly\", :showLink=>true}, @embedded=true>"
|
278
278
|
]
|
279
279
|
},
|
280
280
|
"metadata": {},
|
@@ -283,7 +283,7 @@
|
|
283
283
|
{
|
284
284
|
"data": {
|
285
285
|
"text/plain": [
|
286
|
-
"#<CZTop::Socket::PUB:
|
286
|
+
"#<CZTop::Socket::PUB:0x7fa154df9ef0 last_endpoint=\"tcp://127.0.0.1:55843\">"
|
287
287
|
]
|
288
288
|
},
|
289
289
|
"execution_count": 1,
|