You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: julia/getting-started-with-chart-studio.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ jupyter:
27
27
28
28
To install Chart Studio's Julia package, use the built-in Julia package manager to install the `Plotly` package.
29
29
30
-
```julia
30
+
```
31
31
using Pkg
32
32
Pkg.add("Plotly")
33
33
```
@@ -44,7 +44,7 @@ After installing the Plotly.jl package, you're ready to fire up julia:
44
44
45
45
and set your credentials:
46
46
47
-
```julia
47
+
```
48
48
using Plotly
49
49
Plotly.signin("DemoAccount", "lr1c37zw81")
50
50
```
@@ -75,7 +75,7 @@ Plot can be set to three different type of privacies: public, private or secret.
75
75
76
76
By default all plots are set to **public**. Users with free account have the permission to keep one private plot. If you need to save private plots, [upgrade to a pro account](https://plotly.com/plans). If you're a [Personal or Professional user](https://plotly.com/settings/subscription/?modal=true&utm_source=api-docs&utm_medium=support-oss) and would like the default setting for your plots to be private, you can edit your Chart Studio configuration:
77
77
78
-
```julia
78
+
```
79
79
using Plotly
80
80
Plotly.set_config_file(
81
81
world_readable=false,
@@ -91,7 +91,7 @@ If your company has a Chart Studio Enterprise server, change the API endpoint so
91
91
92
92
In Julia, enter:
93
93
94
-
```julia
94
+
```
95
95
using Plotly
96
96
Plotly.set_config_file(
97
97
plotly_domain="https://plotly.your-company.com",
@@ -105,7 +105,7 @@ Additionally, you can set your configuration so that you generate **private plot
105
105
106
106
In pJulia, enter:
107
107
108
-
```julia
108
+
```
109
109
using Plotly
110
110
Plotly.set_config_file(
111
111
plotly_domain="https://plotly.your-company.com",
@@ -122,7 +122,7 @@ When plotting online, the plot and data will be saved to your cloud account. The
122
122
123
123
Copy and paste the following example to create your first hosted Plotly graph using the Plotly Julia library:
0 commit comments