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

Skip to content

Andrew merge in shiny #43

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Sep 19, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ var data = [trace1, trace2];
var graph_options = {filename: "callbacks-example-placeholder", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/area/basic-area/js/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ var data = [trace1, trace2];
var graph_options = {filename: "basic-area", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/area/basic-area/julia/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ trace2 = [
]
data = [trace1, trace2]
response = Plotly.plot(data, ["filename" => "basic-area", "fileopt" => "overwrite"])
plot_url = response["url"]
plot_url = response["url"]
2 changes: 1 addition & 1 deletion auto-docs/chart-types/area/basic-area/matlab/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ trace2 = struct(...
'type', 'scatter');
data = {trace1, trace2};
response = plotly(data, struct('filename', 'basic-area', 'fileopt', 'overwrite'));
plot_url = response.url
plot_url = response.url
2 changes: 1 addition & 1 deletion auto-docs/chart-types/area/basic-area/nodejs/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ var data = [trace1, trace2];
var graph_options = {filename: "basic-area", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/area/basic-area/python/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ trace2 = Scatter(
fill='tonexty'
)
data = Data([trace1, trace2])
plot_url = py.plot(data, filename='basic-area')
plot_url = py.plot(data, filename='basic-area')
2 changes: 1 addition & 1 deletion auto-docs/chart-types/area/basic-area/r/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ trace2 <- list(
)
data <- list(trace1, trace2)
response <- py$plotly(data, kwargs=list(filename="basic-area", fileopt="overwrite"))
url <- response$url
url <- response$url
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/bar-marker-array/js/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ var data = [
var graph_options = {filename: "bar-marker-array", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/bar-marker-array/julia/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ data = [
]
]
response = Plotly.plot(data, ["filename" => "bar-marker-array", "fileopt" => "overwrite"])
plot_url = response["url"]
plot_url = response["url"]
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/bar-marker-array/matlab/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ data = {...
'type', 'bar')...
};
response = plotly(data, struct('filename', 'bar-marker-array', 'fileopt', 'overwrite'));
plot_url = response.url
plot_url = response.url
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/bar-marker-array/nodejs/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ var data = [
var graph_options = {filename: "bar-marker-array", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/bar-marker-array/python/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ data = Data([
)
)
])
plot_url = py.plot(data, filename='bar-marker-array')
plot_url = py.plot(data, filename='bar-marker-array')
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/bar-marker-array/r/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ data <- list(
)
)
response <- py$plotly(data, kwargs=list(filename="bar-marker-array", fileopt="overwrite"))
url <- response$url
url <- response$url
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ layout = [
"bargap" => 0.05
]
response = Plotly.plot(data, ["layout" => layout, "filename" => "bar-with-hover-text", "fileopt" => "overwrite"])
plot_url = response["url"]
plot_url = response["url"]
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ layout = struct(...
'gridwidth', 2), ...
'bargap', 0.05);
response = plotly(data, struct('layout', layout, 'filename', 'bar-with-hover-text', 'fileopt', 'overwrite'));
plot_url = response.url
plot_url = response.url
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ var layout = {
var graph_options = {layout: layout, filename: "bar-with-hover-text", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ layout = Layout(
bargap=0.05
)
fig = Figure(data=data, layout=layout)
plot_url = py.plot(fig, filename='bar-with-hover-text')
plot_url = py.plot(fig, filename='bar-with-hover-text')
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/bar-with-hover-text/r/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ layout <- list(
bargap = 0.05
)
response <- py$plotly(data, kwargs=list(layout=layout, filename="bar-with-hover-text", fileopt="overwrite"))
url <- response$url
url <- response$url
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/basic-bar/js/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ var data = [
var graph_options = {filename: "basic-bar", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/basic-bar/julia/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ data = [
]
]
response = Plotly.plot(data, ["filename" => "basic-bar", "fileopt" => "overwrite"])
plot_url = response["url"]
plot_url = response["url"]
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/basic-bar/matlab/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ data = {...
'type', 'bar')...
};
response = plotly(data, struct('filename', 'basic-bar', 'fileopt', 'overwrite'));
plot_url = response.url
plot_url = response.url
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/basic-bar/nodejs/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ var data = [
var graph_options = {filename: "basic-bar", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/basic-bar/python/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ data = Data([
y=[20, 14, 23]
)
])
plot_url = py.plot(data, filename='basic-bar')
plot_url = py.plot(data, filename='basic-bar')
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/basic-bar/r/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ data <- list(
)
)
response <- py$plotly(data, kwargs=list(filename="basic-bar", fileopt="overwrite"))
url <- response$url
url <- response$url
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/grouped-bar/js/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ var layout = {barmode: "group"};
var graph_options = {layout: layout, filename: "grouped-bar", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/grouped-bar/julia/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ trace2 = [
data = [trace1, trace2]
layout = ["barmode" => "group"]
response = Plotly.plot(data, ["layout" => layout, "filename" => "grouped-bar", "fileopt" => "overwrite"])
plot_url = response["url"]
plot_url = response["url"]
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/grouped-bar/matlab/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ trace2 = struct(...
data = {trace1, trace2};
layout = struct('barmode', 'group');
response = plotly(data, struct('layout', layout, 'filename', 'grouped-bar', 'fileopt', 'overwrite'));
plot_url = response.url
plot_url = response.url
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/grouped-bar/nodejs/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ var layout = {barmode: "group"};
var graph_options = {layout: layout, filename: "grouped-bar", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/grouped-bar/python/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ layout = Layout(
barmode='group'
)
fig = Figure(data=data, layout=layout)
plot_url = py.plot(fig, filename='grouped-bar')
plot_url = py.plot(fig, filename='grouped-bar')
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/grouped-bar/r/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ trace2 <- list(
data <- list(trace1, trace2)
layout <- list(barmode = "group")
response <- py$plotly(data, kwargs=list(layout=layout, filename="grouped-bar", fileopt="overwrite"))
url <- response$url
url <- response$url
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/stacked-bar/js/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ var layout = {barmode: "stack"};
var graph_options = {layout: layout, filename: "stacked-bar", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/stacked-bar/julia/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ trace2 = [
data = [trace1, trace2]
layout = ["barmode" => "stack"]
response = Plotly.plot(data, ["layout" => layout, "filename" => "stacked-bar", "fileopt" => "overwrite"])
plot_url = response["url"]
plot_url = response["url"]
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/stacked-bar/matlab/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ trace2 = struct(...
data = {trace1, trace2};
layout = struct('barmode', 'stack');
response = plotly(data, struct('layout', layout, 'filename', 'stacked-bar', 'fileopt', 'overwrite'));
plot_url = response.url
plot_url = response.url
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/stacked-bar/nodejs/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ var layout = {barmode: "stack"};
var graph_options = {layout: layout, filename: "stacked-bar", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/stacked-bar/python/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ layout = Layout(
barmode='stack'
)
fig = Figure(data=data, layout=layout)
plot_url = py.plot(fig, filename='stacked-bar')
plot_url = py.plot(fig, filename='stacked-bar')
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/stacked-bar/r/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ trace2 <- list(
data <- list(trace1, trace2)
layout <- list(barmode = "stack")
response <- py$plotly(data, kwargs=list(layout=layout, filename="stacked-bar", fileopt="overwrite"))
url <- response$url
url <- response$url
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/style-bar/js/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ var layout = {
var graph_options = {layout: layout, filename: "style-bar", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/style-bar/julia/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ layout = [
"bargroupgap" => 0.1
]
response = Plotly.plot(data, ["layout" => layout, "filename" => "style-bar", "fileopt" => "overwrite"])
plot_url = response["url"]
plot_url = response["url"]
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/style-bar/matlab/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ layout = struct(...
'bargap', 0.15, ...
'bargroupgap', 0.1);
response = plotly(data, struct('layout', layout, 'filename', 'style-bar', 'fileopt', 'overwrite'));
plot_url = response.url
plot_url = response.url
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/style-bar/nodejs/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ var layout = {
var graph_options = {layout: layout, filename: "style-bar", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/style-bar/python/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ layout = Layout(
bargroupgap=0.1
)
fig = Figure(data=data, layout=layout)
plot_url = py.plot(fig, filename='style-bar')
plot_url = py.plot(fig, filename='style-bar')
2 changes: 1 addition & 1 deletion auto-docs/chart-types/bar/style-bar/r/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ layout <- list(
bargroupgap = 0.1
)
response <- py$plotly(data, kwargs=list(layout=layout, filename="style-bar", fileopt="overwrite"))
url <- response$url
url <- response$url
2 changes: 1 addition & 1 deletion auto-docs/chart-types/box/basic-box-plot/js/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ var data = [trace1, trace2];
var graph_options = {filename: "basic-box-plot", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/box/basic-box-plot/julia/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ trace2 = [
]
data = [trace1, trace2]
response = Plotly.plot(data, ["filename" => "basic-box-plot", "fileopt" => "overwrite"])
plot_url = response["url"]
plot_url = response["url"]
2 changes: 1 addition & 1 deletion auto-docs/chart-types/box/basic-box-plot/nodejs/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ var data = [trace1, trace2];
var graph_options = {filename: "basic-box-plot", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/box/basic-box-plot/python/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ trace2 = Box(
y=y1
)
data = Data([trace1, trace2])
plot_url = py.plot(data, filename='basic-box-plot')
plot_url = py.plot(data, filename='basic-box-plot')
2 changes: 1 addition & 1 deletion auto-docs/chart-types/box/basic-box-plot/r/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ trace2 <- list(
)
data <- list(trace1, trace2)
response <- py$plotly(data, kwargs=list(filename="basic-box-plot", fileopt="overwrite"))
url <- response$url
url <- response$url
2 changes: 1 addition & 1 deletion auto-docs/chart-types/box/box-grouped/js/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ var layout = {
var graph_options = {layout: layout, filename: "box-grouped", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/box/box-grouped/julia/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ layout = [
"boxmode" => "group"
]
response = Plotly.plot(data, ["layout" => layout, "filename" => "box-grouped", "fileopt" => "overwrite"])
plot_url = response["url"]
plot_url = response["url"]
2 changes: 1 addition & 1 deletion auto-docs/chart-types/box/box-grouped/matlab/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ layout = struct(...
'zeroline', false), ...
'boxmode', 'group');
response = plotly(data, struct('layout', layout, 'filename', 'box-grouped', 'fileopt', 'overwrite'));
plot_url = response.url
plot_url = response.url
2 changes: 1 addition & 1 deletion auto-docs/chart-types/box/box-grouped/nodejs/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ var layout = {
var graph_options = {layout: layout, filename: "box-grouped", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/box/box-grouped/python/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ layout = Layout(
boxmode='group'
)
fig = Figure(data=data, layout=layout)
plot_url = py.plot(fig, filename='box-grouped')
plot_url = py.plot(fig, filename='box-grouped')
2 changes: 1 addition & 1 deletion auto-docs/chart-types/box/box-grouped/r/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ layout <- list(
boxmode = "group"
)
response <- py$plotly(data, kwargs=list(layout=layout, filename="box-grouped", fileopt="overwrite"))
url <- response$url
url <- response$url
2 changes: 1 addition & 1 deletion auto-docs/chart-types/box/box-plot-jitter/js/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ var data = [
var graph_options = {filename: "box-plot-jitter", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
2 changes: 1 addition & 1 deletion auto-docs/chart-types/box/box-plot-jitter/julia/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ data = [
]
]
response = Plotly.plot(data, ["filename" => "box-plot-jitter", "fileopt" => "overwrite"])
plot_url = response["url"]
plot_url = response["url"]
2 changes: 1 addition & 1 deletion auto-docs/chart-types/box/box-plot-jitter/matlab/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ data = {...
'type', 'box')...
};
response = plotly(data, struct('filename', 'box-plot-jitter', 'fileopt', 'overwrite'));
plot_url = response.url
plot_url = response.url
2 changes: 1 addition & 1 deletion auto-docs/chart-types/box/box-plot-jitter/nodejs/code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ var data = [
var graph_options = {filename: "box-plot-jitter", fileopt: "overwrite"}
plotly.plot(data, graph_options, function (err, msg) {
console.log(msg);
});
});
Loading