Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b5918b2

Browse files
committed
Fresh run.py with updates from streambed changes.
1 parent 859564d commit b5918b2

File tree

1,041 files changed

+1136
-1993
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,041 files changed

+1136
-1993
lines changed

auto-docs/callbacks/callbacks-subsection-placeholder/callbacks-example-placeholder/js/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var trace2 = {
1313
type: "scatter"
1414
};
1515
var data = [trace1, trace2];
16-
var graph_options = {fileopt: "overwrite", filename: "callbacks-example-placeholder"}
16+
var graph_options = {filename: "callbacks-example-placeholder", fileopt: "overwrite"}
1717
plotly.plot(data, graph_options, function (err, msg) {
1818
console.log(msg);
1919
});

auto-docs/chart-types/area/basic-area/js/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var trace2 = {
1313
type: "scatter"
1414
};
1515
var data = [trace1, trace2];
16-
var graph_options = {fileopt: "overwrite", filename: "basic-area"}
16+
var graph_options = {filename: "basic-area", fileopt: "overwrite"}
1717
plotly.plot(data, graph_options, function (err, msg) {
1818
console.log(msg);
1919
});

auto-docs/chart-types/area/basic-area/julia/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ trace2 = [
1616
"type" => "scatter"
1717
]
1818
data = [trace1, trace2]
19-
response = Plotly.plot(data, ["fileopt" => "overwrite", "filename" => "basic-area"])
19+
response = Plotly.plot(data, ["filename" => "basic-area", "fileopt" => "overwrite"])
2020
plot_url = response["url"]

auto-docs/chart-types/area/basic-area/matlab/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ trace2 = struct(...
1313
'fill', 'tonexty', ...
1414
'type', 'scatter');
1515
data = {trace1, trace2};
16-
response = plotly(data, struct('fileopt', 'overwrite', 'filename', 'basic-area'));
16+
response = plotly(data, struct('filename', 'basic-area', 'fileopt', 'overwrite'));
1717
plot_url = response.url

auto-docs/chart-types/area/basic-area/nodejs/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var trace2 = {
1515
type: "scatter"
1616
};
1717
var data = [trace1, trace2];
18-
var graph_options = {fileopt: "overwrite", filename: "basic-area"}
18+
var graph_options = {filename: "basic-area", fileopt: "overwrite"}
1919
plotly.plot(data, graph_options, function (err, msg) {
2020
console.log(msg);
2121
});

auto-docs/chart-types/area/basic-area/r/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ trace2 <- list(
1616
type = "scatter"
1717
)
1818
data <- list(trace1, trace2)
19-
response <- p$plotly(data, kwargs=list(fileopt="overwrite", filename="basic-area"))
19+
response <- py$plotly(data, kwargs=list(filename="basic-area", fileopt="overwrite"))
2020
url <- response$url

auto-docs/chart-types/bar/bar-marker-array/js/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var data = [
88
type: "bar"
99
}
1010
];
11-
var graph_options = {fileopt: "overwrite", filename: "bar-marker-array"}
11+
var graph_options = {filename: "bar-marker-array", fileopt: "overwrite"}
1212
plotly.plot(data, graph_options, function (err, msg) {
1313
console.log(msg);
1414
});

auto-docs/chart-types/bar/bar-marker-array/julia/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ data = [
1111
"type" => "bar"
1212
]
1313
]
14-
response = Plotly.plot(data, ["fileopt" => "overwrite", "filename" => "bar-marker-array"])
14+
response = Plotly.plot(data, ["filename" => "bar-marker-array", "fileopt" => "overwrite"])
1515
plot_url = response["url"]

auto-docs/chart-types/bar/bar-marker-array/matlab/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ data = {...
99
'marker', struct('color', { {'#447adb', '#447adb', '#db5a44', '#447adb'} }), ...
1010
'type', 'bar')...
1111
};
12-
response = plotly(data, struct('fileopt', 'overwrite', 'filename', 'bar-marker-array'));
12+
response = plotly(data, struct('filename', 'bar-marker-array', 'fileopt', 'overwrite'));
1313
plot_url = response.url

auto-docs/chart-types/bar/bar-marker-array/nodejs/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var data = [
1010
type: "bar"
1111
}
1212
];
13-
var graph_options = {fileopt: "overwrite", filename: "bar-marker-array"}
13+
var graph_options = {filename: "bar-marker-array", fileopt: "overwrite"}
1414
plotly.plot(data, graph_options, function (err, msg) {
1515
console.log(msg);
1616
});

auto-docs/chart-types/bar/bar-marker-array/r/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ data <- list(
1111
type = "bar"
1212
)
1313
)
14-
response <- p$plotly(data, kwargs=list(fileopt="overwrite", filename="bar-marker-array"))
14+
response <- py$plotly(data, kwargs=list(filename="bar-marker-array", fileopt="overwrite"))
1515
url <- response$url

auto-docs/chart-types/bar/bar-with-hover-text/julia/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ layout = [
2323
],
2424
"bargap" => 0.05
2525
]
26-
response = Plotly.plot(data, ["layout" => layout, "fileopt" => "overwrite", "filename" => "bar-with-hover-text"])
26+
response = Plotly.plot(data, ["layout" => layout, "filename" => "bar-with-hover-text", "fileopt" => "overwrite"])
2727
plot_url = response["url"]

auto-docs/chart-types/bar/bar-with-hover-text/matlab/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ layout = struct(...
1919
'zeroline', false, ...
2020
'gridwidth', 2), ...
2121
'bargap', 0.05);
22-
response = plotly(data, struct('layout', layout, 'fileopt', 'overwrite', 'filename', 'bar-with-hover-text'));
22+
response = plotly(data, struct('layout', layout, 'filename', 'bar-with-hover-text', 'fileopt', 'overwrite'));
2323
plot_url = response.url

auto-docs/chart-types/bar/bar-with-hover-text/nodejs/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ var layout = {
2222
},
2323
bargap: 0.05
2424
};
25-
var graph_options = {layout: layout, fileopt: "overwrite", filename: "bar-with-hover-text"}
25+
var graph_options = {layout: layout, filename: "bar-with-hover-text", fileopt: "overwrite"}
2626
plotly.plot(data, graph_options, function (err, msg) {
2727
console.log(msg);
2828
});

auto-docs/chart-types/bar/bar-with-hover-text/r/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ layout <- list(
2323
),
2424
bargap = 0.05
2525
)
26-
response <- p$plotly(data, kwargs=list(layout=layout, fileopt="overwrite", filename="bar-with-hover-text"))
26+
response <- py$plotly(data, kwargs=list(layout=layout, filename="bar-with-hover-text", fileopt="overwrite"))
2727
url <- response$url

auto-docs/chart-types/bar/basic-bar/js/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var data = [
77
type: "bar"
88
}
99
];
10-
var graph_options = {fileopt: "overwrite", filename: "basic-bar"}
10+
var graph_options = {filename: "basic-bar", fileopt: "overwrite"}
1111
plotly.plot(data, graph_options, function (err, msg) {
1212
console.log(msg);
1313
});

auto-docs/chart-types/bar/basic-bar/julia/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ data = [
1010
"type" => "bar"
1111
]
1212
]
13-
response = Plotly.plot(data, ["fileopt" => "overwrite", "filename" => "basic-bar"])
13+
response = Plotly.plot(data, ["filename" => "basic-bar", "fileopt" => "overwrite"])
1414
plot_url = response["url"]

auto-docs/chart-types/bar/basic-bar/matlab/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ data = {...
88
'y', [20, 14, 23], ...
99
'type', 'bar')...
1010
};
11-
response = plotly(data, struct('fileopt', 'overwrite', 'filename', 'basic-bar'));
11+
response = plotly(data, struct('filename', 'basic-bar', 'fileopt', 'overwrite'));
1212
plot_url = response.url

auto-docs/chart-types/bar/basic-bar/nodejs/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var data = [
99
type: "bar"
1010
}
1111
];
12-
var graph_options = {fileopt: "overwrite", filename: "basic-bar"}
12+
var graph_options = {filename: "basic-bar", fileopt: "overwrite"}
1313
plotly.plot(data, graph_options, function (err, msg) {
1414
console.log(msg);
1515
});

auto-docs/chart-types/bar/basic-bar/r/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ data <- list(
1010
type = "bar"
1111
)
1212
)
13-
response <- p$plotly(data, kwargs=list(fileopt="overwrite", filename="basic-bar"))
13+
response <- py$plotly(data, kwargs=list(filename="basic-bar", fileopt="overwrite"))
1414
url <- response$url

auto-docs/chart-types/bar/grouped-bar/js/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var trace2 = {
1414
};
1515
var data = [trace1, trace2];
1616
var layout = {barmode: "group"};
17-
var graph_options = {layout: layout, fileopt: "overwrite", filename: "grouped-bar"}
17+
var graph_options = {layout: layout, filename: "grouped-bar", fileopt: "overwrite"}
1818
plotly.plot(data, graph_options, function (err, msg) {
1919
console.log(msg);
2020
});

auto-docs/chart-types/bar/grouped-bar/julia/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ trace2 = [
1717
]
1818
data = [trace1, trace2]
1919
layout = ["barmode" => "group"]
20-
response = Plotly.plot(data, ["layout" => layout, "fileopt" => "overwrite", "filename" => "grouped-bar"])
20+
response = Plotly.plot(data, ["layout" => layout, "filename" => "grouped-bar", "fileopt" => "overwrite"])
2121
plot_url = response["url"]

auto-docs/chart-types/bar/grouped-bar/matlab/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ trace2 = struct(...
1414
'type', 'bar');
1515
data = {trace1, trace2};
1616
layout = struct('barmode', 'group');
17-
response = plotly(data, struct('layout', layout, 'fileopt', 'overwrite', 'filename', 'grouped-bar'));
17+
response = plotly(data, struct('layout', layout, 'filename', 'grouped-bar', 'fileopt', 'overwrite'));
1818
plot_url = response.url

auto-docs/chart-types/bar/grouped-bar/nodejs/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var trace2 = {
1616
};
1717
var data = [trace1, trace2];
1818
var layout = {barmode: "group"};
19-
var graph_options = {layout: layout, fileopt: "overwrite", filename: "grouped-bar"}
19+
var graph_options = {layout: layout, filename: "grouped-bar", fileopt: "overwrite"}
2020
plotly.plot(data, graph_options, function (err, msg) {
2121
console.log(msg);
2222
});

auto-docs/chart-types/bar/grouped-bar/r/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ trace2 <- list(
1717
)
1818
data <- list(trace1, trace2)
1919
layout <- list(barmode = "group")
20-
response <- p$plotly(data, kwargs=list(layout=layout, fileopt="overwrite", filename="grouped-bar"))
20+
response <- py$plotly(data, kwargs=list(layout=layout, filename="grouped-bar", fileopt="overwrite"))
2121
url <- response$url

auto-docs/chart-types/bar/stacked-bar/js/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var trace2 = {
1414
};
1515
var data = [trace1, trace2];
1616
var layout = {barmode: "stack"};
17-
var graph_options = {layout: layout, fileopt: "overwrite", filename: "stacked-bar"}
17+
var graph_options = {layout: layout, filename: "stacked-bar", fileopt: "overwrite"}
1818
plotly.plot(data, graph_options, function (err, msg) {
1919
console.log(msg);
2020
});

auto-docs/chart-types/bar/stacked-bar/julia/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ trace2 = [
1717
]
1818
data = [trace1, trace2]
1919
layout = ["barmode" => "stack"]
20-
response = Plotly.plot(data, ["layout" => layout, "fileopt" => "overwrite", "filename" => "stacked-bar"])
20+
response = Plotly.plot(data, ["layout" => layout, "filename" => "stacked-bar", "fileopt" => "overwrite"])
2121
plot_url = response["url"]

auto-docs/chart-types/bar/stacked-bar/matlab/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ trace2 = struct(...
1414
'type', 'bar');
1515
data = {trace1, trace2};
1616
layout = struct('barmode', 'stack');
17-
response = plotly(data, struct('layout', layout, 'fileopt', 'overwrite', 'filename', 'stacked-bar'));
17+
response = plotly(data, struct('layout', layout, 'filename', 'stacked-bar', 'fileopt', 'overwrite'));
1818
plot_url = response.url

auto-docs/chart-types/bar/stacked-bar/nodejs/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var trace2 = {
1616
};
1717
var data = [trace1, trace2];
1818
var layout = {barmode: "stack"};
19-
var graph_options = {layout: layout, fileopt: "overwrite", filename: "stacked-bar"}
19+
var graph_options = {layout: layout, filename: "stacked-bar", fileopt: "overwrite"}
2020
plotly.plot(data, graph_options, function (err, msg) {
2121
console.log(msg);
2222
});

auto-docs/chart-types/bar/stacked-bar/r/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ trace2 <- list(
1717
)
1818
data <- list(trace1, trace2)
1919
layout <- list(barmode = "stack")
20-
response <- p$plotly(data, kwargs=list(layout=layout, fileopt="overwrite", filename="stacked-bar"))
20+
response <- py$plotly(data, kwargs=list(layout=layout, filename="stacked-bar", fileopt="overwrite"))
2121
url <- response$url

auto-docs/chart-types/bar/style-bar/js/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ var layout = {
4242
bargap: 0.15,
4343
bargroupgap: 0.1
4444
};
45-
var graph_options = {layout: layout, fileopt: "overwrite", filename: "style-bar"}
45+
var graph_options = {layout: layout, filename: "style-bar", fileopt: "overwrite"}
4646
plotly.plot(data, graph_options, function (err, msg) {
4747
console.log(msg);
4848
});

auto-docs/chart-types/bar/style-bar/julia/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ layout = [
4545
"bargap" => 0.15,
4646
"bargroupgap" => 0.1
4747
]
48-
response = Plotly.plot(data, ["layout" => layout, "fileopt" => "overwrite", "filename" => "style-bar"])
48+
response = Plotly.plot(data, ["layout" => layout, "filename" => "style-bar", "fileopt" => "overwrite"])
4949
plot_url = response["url"]

auto-docs/chart-types/bar/style-bar/matlab/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ layout = struct(...
3636
'barmode', 'group', ...
3737
'bargap', 0.15, ...
3838
'bargroupgap', 0.1);
39-
response = plotly(data, struct('layout', layout, 'fileopt', 'overwrite', 'filename', 'style-bar'));
39+
response = plotly(data, struct('layout', layout, 'filename', 'style-bar', 'fileopt', 'overwrite'));
4040
plot_url = response.url

auto-docs/chart-types/bar/style-bar/nodejs/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var layout = {
4444
bargap: 0.15,
4545
bargroupgap: 0.1
4646
};
47-
var graph_options = {layout: layout, fileopt: "overwrite", filename: "style-bar"}
47+
var graph_options = {layout: layout, filename: "style-bar", fileopt: "overwrite"}
4848
plotly.plot(data, graph_options, function (err, msg) {
4949
console.log(msg);
5050
});

auto-docs/chart-types/bar/style-bar/r/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ layout <- list(
4545
bargap = 0.15,
4646
bargroupgap = 0.1
4747
)
48-
response <- p$plotly(data, kwargs=list(layout=layout, fileopt="overwrite", filename="style-bar"))
48+
response <- py$plotly(data, kwargs=list(layout=layout, filename="style-bar", fileopt="overwrite"))
4949
url <- response$url

auto-docs/chart-types/box/basic-box-plot/js/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var trace2 = {
1414
type: "box"
1515
};
1616
var data = [trace1, trace2];
17-
var graph_options = {fileopt: "overwrite", filename: "basic-box-plot"}
17+
var graph_options = {filename: "basic-box-plot", fileopt: "overwrite"}
1818
plotly.plot(data, graph_options, function (err, msg) {
1919
console.log(msg);
2020
});

auto-docs/chart-types/box/basic-box-plot/julia/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ trace2 = [
1414
"type" => "box"
1515
]
1616
data = [trace1, trace2]
17-
response = Plotly.plot(data, ["fileopt" => "overwrite", "filename" => "basic-box-plot"])
17+
response = Plotly.plot(data, ["filename" => "basic-box-plot", "fileopt" => "overwrite"])
1818
plot_url = response["url"]

auto-docs/chart-types/box/basic-box-plot/nodejs/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var trace2 = {
1616
type: "box"
1717
};
1818
var data = [trace1, trace2];
19-
var graph_options = {fileopt: "overwrite", filename: "basic-box-plot"}
19+
var graph_options = {filename: "basic-box-plot", fileopt: "overwrite"}
2020
plotly.plot(data, graph_options, function (err, msg) {
2121
console.log(msg);
2222
});

auto-docs/chart-types/box/basic-box-plot/r/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ trace2 <- list(
1414
type = "box"
1515
)
1616
data <- list(trace1, trace2)
17-
response <- p$plotly(data, kwargs=list(fileopt="overwrite", filename="basic-box-plot"))
17+
response <- py$plotly(data, kwargs=list(filename="basic-box-plot", fileopt="overwrite"))
1818
url <- response$url

auto-docs/chart-types/box/box-grouped/js/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var layout = {
3131
},
3232
boxmode: "group"
3333
};
34-
var graph_options = {layout: layout, fileopt: "overwrite", filename: "box-grouped"}
34+
var graph_options = {layout: layout, filename: "box-grouped", fileopt: "overwrite"}
3535
plotly.plot(data, graph_options, function (err, msg) {
3636
console.log(msg);
3737
});

auto-docs/chart-types/box/box-grouped/julia/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ layout = [
3434
],
3535
"boxmode" => "group"
3636
]
37-
response = Plotly.plot(data, ["layout" => layout, "fileopt" => "overwrite", "filename" => "box-grouped"])
37+
response = Plotly.plot(data, ["layout" => layout, "filename" => "box-grouped", "fileopt" => "overwrite"])
3838
plot_url = response["url"]

auto-docs/chart-types/box/box-grouped/matlab/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ layout = struct(...
2828
'title', 'normalized moisture', ...
2929
'zeroline', false), ...
3030
'boxmode', 'group');
31-
response = plotly(data, struct('layout', layout, 'fileopt', 'overwrite', 'filename', 'box-grouped'));
31+
response = plotly(data, struct('layout', layout, 'filename', 'box-grouped', 'fileopt', 'overwrite'));
3232
plot_url = response.url

auto-docs/chart-types/box/box-grouped/nodejs/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var layout = {
3333
},
3434
boxmode: "group"
3535
};
36-
var graph_options = {layout: layout, fileopt: "overwrite", filename: "box-grouped"}
36+
var graph_options = {layout: layout, filename: "box-grouped", fileopt: "overwrite"}
3737
plotly.plot(data, graph_options, function (err, msg) {
3838
console.log(msg);
3939
});

auto-docs/chart-types/box/box-grouped/r/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ layout <- list(
3434
),
3535
boxmode = "group"
3636
)
37-
response <- p$plotly(data, kwargs=list(layout=layout, fileopt="overwrite", filename="box-grouped"))
37+
response <- py$plotly(data, kwargs=list(layout=layout, filename="box-grouped", fileopt="overwrite"))
3838
url <- response$url

auto-docs/chart-types/box/box-plot-jitter/js/code.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var data = [
99
type: "box"
1010
}
1111
];
12-
var graph_options = {fileopt: "overwrite", filename: "box-plot-jitter"}
12+
var graph_options = {filename: "box-plot-jitter", fileopt: "overwrite"}
1313
plotly.plot(data, graph_options, function (err, msg) {
1414
console.log(msg);
1515
});

0 commit comments

Comments
 (0)