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

Skip to content

Commit 978f08a

Browse files
committed
Just adding newlines to everything. Add ?w=1 to GH page to confirm.
1 parent 548ffda commit 978f08a

File tree

1,727 files changed

+1727
-1727
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,727 files changed

+1727
-1727
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
@@ -16,4 +16,4 @@ var data = [trace1, trace2];
1616
var graph_options = {filename: "callbacks-example-placeholder", fileopt: "overwrite"}
1717
plotly.plot(data, graph_options, function (err, msg) {
1818
console.log(msg);
19-
});
19+
});

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ trace2 = [
1717
]
1818
data = [trace1, trace2]
1919
response = Plotly.plot(data, ["filename" => "basic-area", "fileopt" => "overwrite"])
20-
plot_url = response["url"]
20+
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
@@ -14,4 +14,4 @@ trace2 = struct(...
1414
'type', 'scatter');
1515
data = {trace1, trace2};
1616
response = plotly(data, struct('filename', 'basic-area', 'fileopt', 'overwrite'));
17-
plot_url = response.url
17+
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
@@ -18,4 +18,4 @@ var data = [trace1, trace2];
1818
var graph_options = {filename: "basic-area", fileopt: "overwrite"}
1919
plotly.plot(data, graph_options, function (err, msg) {
2020
console.log(msg);
21-
});
21+
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ trace2 = Scatter(
1515
fill='tonexty'
1616
)
1717
data = Data([trace1, trace2])
18-
plot_url = py.plot(data, filename='basic-area')
18+
plot_url = py.plot(data, filename='basic-area')

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ trace2 <- list(
1717
)
1818
data <- list(trace1, trace2)
1919
response <- py$plotly(data, kwargs=list(filename="basic-area", fileopt="overwrite"))
20-
url <- response$url
20+
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
@@ -11,4 +11,4 @@ var data = [
1111
var graph_options = {filename: "bar-marker-array", fileopt: "overwrite"}
1212
plotly.plot(data, graph_options, function (err, msg) {
1313
console.log(msg);
14-
});
14+
});

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
@@ -12,4 +12,4 @@ data = [
1212
]
1313
]
1414
response = Plotly.plot(data, ["filename" => "bar-marker-array", "fileopt" => "overwrite"])
15-
plot_url = response["url"]
15+
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
@@ -10,4 +10,4 @@ data = {...
1010
'type', 'bar')...
1111
};
1212
response = plotly(data, struct('filename', 'bar-marker-array', 'fileopt', 'overwrite'));
13-
plot_url = response.url
13+
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
@@ -13,4 +13,4 @@ var data = [
1313
var graph_options = {filename: "bar-marker-array", fileopt: "overwrite"}
1414
plotly.plot(data, graph_options, function (err, msg) {
1515
console.log(msg);
16-
});
16+
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ data = Data([
1313
)
1414
)
1515
])
16-
plot_url = py.plot(data, filename='bar-marker-array')
16+
plot_url = py.plot(data, filename='bar-marker-array')

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
@@ -12,4 +12,4 @@ data <- list(
1212
)
1313
)
1414
response <- py$plotly(data, kwargs=list(filename="bar-marker-array", fileopt="overwrite"))
15-
url <- response$url
15+
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
@@ -24,4 +24,4 @@ layout = [
2424
"bargap" => 0.05
2525
]
2626
response = Plotly.plot(data, ["layout" => layout, "filename" => "bar-with-hover-text", "fileopt" => "overwrite"])
27-
plot_url = response["url"]
27+
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
@@ -20,4 +20,4 @@ layout = struct(...
2020
'gridwidth', 2), ...
2121
'bargap', 0.05);
2222
response = plotly(data, struct('layout', layout, 'filename', 'bar-with-hover-text', 'fileopt', 'overwrite'));
23-
plot_url = response.url
23+
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
@@ -25,4 +25,4 @@ var layout = {
2525
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);
28-
});
28+
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ layout = Layout(
3030
bargap=0.05
3131
)
3232
fig = Figure(data=data, layout=layout)
33-
plot_url = py.plot(fig, filename='bar-with-hover-text')
33+
plot_url = py.plot(fig, filename='bar-with-hover-text')

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
@@ -24,4 +24,4 @@ layout <- list(
2424
bargap = 0.05
2525
)
2626
response <- py$plotly(data, kwargs=list(layout=layout, filename="bar-with-hover-text", fileopt="overwrite"))
27-
url <- response$url
27+
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
@@ -10,4 +10,4 @@ var data = [
1010
var graph_options = {filename: "basic-bar", fileopt: "overwrite"}
1111
plotly.plot(data, graph_options, function (err, msg) {
1212
console.log(msg);
13-
});
13+
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ data = [
1111
]
1212
]
1313
response = Plotly.plot(data, ["filename" => "basic-bar", "fileopt" => "overwrite"])
14-
plot_url = response["url"]
14+
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
@@ -9,4 +9,4 @@ data = {...
99
'type', 'bar')...
1010
};
1111
response = plotly(data, struct('filename', 'basic-bar', 'fileopt', 'overwrite'));
12-
plot_url = response.url
12+
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
@@ -12,4 +12,4 @@ var data = [
1212
var graph_options = {filename: "basic-bar", fileopt: "overwrite"}
1313
plotly.plot(data, graph_options, function (err, msg) {
1414
console.log(msg);
15-
});
15+
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ data = Data([
1010
y=[20, 14, 23]
1111
)
1212
])
13-
plot_url = py.plot(data, filename='basic-bar')
13+
plot_url = py.plot(data, filename='basic-bar')

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ data <- list(
1111
)
1212
)
1313
response <- py$plotly(data, kwargs=list(filename="basic-bar", fileopt="overwrite"))
14-
url <- response$url
14+
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
@@ -17,4 +17,4 @@ var layout = {barmode: "group"};
1717
var graph_options = {layout: layout, filename: "grouped-bar", fileopt: "overwrite"}
1818
plotly.plot(data, graph_options, function (err, msg) {
1919
console.log(msg);
20-
});
20+
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ trace2 = [
1818
data = [trace1, trace2]
1919
layout = ["barmode" => "group"]
2020
response = Plotly.plot(data, ["layout" => layout, "filename" => "grouped-bar", "fileopt" => "overwrite"])
21-
plot_url = response["url"]
21+
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
@@ -15,4 +15,4 @@ trace2 = struct(...
1515
data = {trace1, trace2};
1616
layout = struct('barmode', 'group');
1717
response = plotly(data, struct('layout', layout, 'filename', 'grouped-bar', 'fileopt', 'overwrite'));
18-
plot_url = response.url
18+
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
@@ -19,4 +19,4 @@ var layout = {barmode: "group"};
1919
var graph_options = {layout: layout, filename: "grouped-bar", fileopt: "overwrite"}
2020
plotly.plot(data, graph_options, function (err, msg) {
2121
console.log(msg);
22-
});
22+
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ layout = Layout(
1919
barmode='group'
2020
)
2121
fig = Figure(data=data, layout=layout)
22-
plot_url = py.plot(fig, filename='grouped-bar')
22+
plot_url = py.plot(fig, filename='grouped-bar')

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ trace2 <- list(
1818
data <- list(trace1, trace2)
1919
layout <- list(barmode = "group")
2020
response <- py$plotly(data, kwargs=list(layout=layout, filename="grouped-bar", fileopt="overwrite"))
21-
url <- response$url
21+
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
@@ -17,4 +17,4 @@ var layout = {barmode: "stack"};
1717
var graph_options = {layout: layout, filename: "stacked-bar", fileopt: "overwrite"}
1818
plotly.plot(data, graph_options, function (err, msg) {
1919
console.log(msg);
20-
});
20+
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ trace2 = [
1818
data = [trace1, trace2]
1919
layout = ["barmode" => "stack"]
2020
response = Plotly.plot(data, ["layout" => layout, "filename" => "stacked-bar", "fileopt" => "overwrite"])
21-
plot_url = response["url"]
21+
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
@@ -15,4 +15,4 @@ trace2 = struct(...
1515
data = {trace1, trace2};
1616
layout = struct('barmode', 'stack');
1717
response = plotly(data, struct('layout', layout, 'filename', 'stacked-bar', 'fileopt', 'overwrite'));
18-
plot_url = response.url
18+
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
@@ -19,4 +19,4 @@ var layout = {barmode: "stack"};
1919
var graph_options = {layout: layout, filename: "stacked-bar", fileopt: "overwrite"}
2020
plotly.plot(data, graph_options, function (err, msg) {
2121
console.log(msg);
22-
});
22+
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ layout = Layout(
1919
barmode='stack'
2020
)
2121
fig = Figure(data=data, layout=layout)
22-
plot_url = py.plot(fig, filename='stacked-bar')
22+
plot_url = py.plot(fig, filename='stacked-bar')

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ trace2 <- list(
1818
data <- list(trace1, trace2)
1919
layout <- list(barmode = "stack")
2020
response <- py$plotly(data, kwargs=list(layout=layout, filename="stacked-bar", fileopt="overwrite"))
21-
url <- response$url
21+
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
@@ -45,4 +45,4 @@ var layout = {
4545
var graph_options = {layout: layout, filename: "style-bar", fileopt: "overwrite"}
4646
plotly.plot(data, graph_options, function (err, msg) {
4747
console.log(msg);
48-
});
48+
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ layout = [
4646
"bargroupgap" => 0.1
4747
]
4848
response = Plotly.plot(data, ["layout" => layout, "filename" => "style-bar", "fileopt" => "overwrite"])
49-
plot_url = response["url"]
49+
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
@@ -37,4 +37,4 @@ layout = struct(...
3737
'bargap', 0.15, ...
3838
'bargroupgap', 0.1);
3939
response = plotly(data, struct('layout', layout, 'filename', 'style-bar', 'fileopt', 'overwrite'));
40-
plot_url = response.url
40+
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
@@ -47,4 +47,4 @@ var layout = {
4747
var graph_options = {layout: layout, filename: "style-bar", fileopt: "overwrite"}
4848
plotly.plot(data, graph_options, function (err, msg) {
4949
console.log(msg);
50-
});
50+
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ layout = Layout(
5151
bargroupgap=0.1
5252
)
5353
fig = Figure(data=data, layout=layout)
54-
plot_url = py.plot(fig, filename='style-bar')
54+
plot_url = py.plot(fig, filename='style-bar')

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ layout <- list(
4646
bargroupgap = 0.1
4747
)
4848
response <- py$plotly(data, kwargs=list(layout=layout, filename="style-bar", fileopt="overwrite"))
49-
url <- response$url
49+
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
@@ -17,4 +17,4 @@ var data = [trace1, trace2];
1717
var graph_options = {filename: "basic-box-plot", fileopt: "overwrite"}
1818
plotly.plot(data, graph_options, function (err, msg) {
1919
console.log(msg);
20-
});
20+
});

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
@@ -15,4 +15,4 @@ trace2 = [
1515
]
1616
data = [trace1, trace2]
1717
response = Plotly.plot(data, ["filename" => "basic-box-plot", "fileopt" => "overwrite"])
18-
plot_url = response["url"]
18+
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
@@ -19,4 +19,4 @@ var data = [trace1, trace2];
1919
var graph_options = {filename: "basic-box-plot", fileopt: "overwrite"}
2020
plotly.plot(data, graph_options, function (err, msg) {
2121
console.log(msg);
22-
});
22+
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ trace2 = Box(
1414
y=y1
1515
)
1616
data = Data([trace1, trace2])
17-
plot_url = py.plot(data, filename='basic-box-plot')
17+
plot_url = py.plot(data, filename='basic-box-plot')

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
@@ -15,4 +15,4 @@ trace2 <- list(
1515
)
1616
data <- list(trace1, trace2)
1717
response <- py$plotly(data, kwargs=list(filename="basic-box-plot", fileopt="overwrite"))
18-
url <- response$url
18+
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
@@ -34,4 +34,4 @@ var layout = {
3434
var graph_options = {layout: layout, filename: "box-grouped", fileopt: "overwrite"}
3535
plotly.plot(data, graph_options, function (err, msg) {
3636
console.log(msg);
37-
});
37+
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ layout = [
3535
"boxmode" => "group"
3636
]
3737
response = Plotly.plot(data, ["layout" => layout, "filename" => "box-grouped", "fileopt" => "overwrite"])
38-
plot_url = response["url"]
38+
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
@@ -29,4 +29,4 @@ layout = struct(...
2929
'zeroline', false), ...
3030
'boxmode', 'group');
3131
response = plotly(data, struct('layout', layout, 'filename', 'box-grouped', 'fileopt', 'overwrite'));
32-
plot_url = response.url
32+
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
@@ -36,4 +36,4 @@ var layout = {
3636
var graph_options = {layout: layout, filename: "box-grouped", fileopt: "overwrite"}
3737
plotly.plot(data, graph_options, function (err, msg) {
3838
console.log(msg);
39-
});
39+
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ layout = Layout(
3939
boxmode='group'
4040
)
4141
fig = Figure(data=data, layout=layout)
42-
plot_url = py.plot(fig, filename='box-grouped')
42+
plot_url = py.plot(fig, filename='box-grouped')

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ layout <- list(
3535
boxmode = "group"
3636
)
3737
response <- py$plotly(data, kwargs=list(layout=layout, filename="box-grouped", fileopt="overwrite"))
38-
url <- response$url
38+
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
@@ -12,4 +12,4 @@ var data = [
1212
var graph_options = {filename: "box-plot-jitter", fileopt: "overwrite"}
1313
plotly.plot(data, graph_options, function (err, msg) {
1414
console.log(msg);
15-
});
15+
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ data = [
1313
]
1414
]
1515
response = Plotly.plot(data, ["filename" => "box-plot-jitter", "fileopt" => "overwrite"])
16-
plot_url = response["url"]
16+
plot_url = response["url"]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ data = {...
1111
'type', 'box')...
1212
};
1313
response = plotly(data, struct('filename', 'box-plot-jitter', 'fileopt', 'overwrite'));
14-
plot_url = response.url
14+
plot_url = response.url

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

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

0 commit comments

Comments
 (0)