(attrs, layout)
| 1219 | var gd; |
| 1220 | |
| 1221 | function _calc(attrs, layout) { |
| 1222 | gd = { |
| 1223 | data: [Lib.extendFlat({type: 'box'}, attrs)], |
| 1224 | layout: layout || {}, |
| 1225 | calcdata: [] |
| 1226 | }; |
| 1227 | supplyAllDefaults(gd); |
| 1228 | Plots.doCalcdata(gd); |
| 1229 | return gd.calcdata[0]; |
| 1230 | } |
| 1231 | |
| 1232 | it('should compute q1/q3 depending on *quartilemethod*', function() { |
| 1233 | // samples from https://en.wikipedia.org/wiki/Quartile |
no outgoing calls
no test coverage detected
searching dependent graphs…