Skip to content

Commit 33d5fbc

Browse files
committed
fix refs in mdbook
Signed-off-by: Andrei Gherghescu <[email protected]>
1 parent 3fe3eb6 commit 33d5fbc

File tree

12 files changed

+32
-32
lines changed

12 files changed

+32
-32
lines changed

docs/book/src/fundamentals.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<div align="center">
2-
<a href="https://github.com/igiagkiozis/plotly/tree/main">
2+
<a href="https://github.com/plotly/plotly.rs/tree/main">
33
<img src="https://img.shields.io/badge/Plotly.rs-main-brightgreen" alt="build status">
44
</a>
5-
<a href="https://github.com/igiagkiozis/plotly/actions">
6-
<img src="https://github.com/igiagkiozis/plotly/workflows/build/badge.svg" alt="build status">
5+
<a href="https://github.com/plotly/plotly.rs/actions">
6+
<img src="https://github.com/plotly/plotly.rs/workflows/build/badge.svg" alt="build status">
77
</a>
88
<a href="https://crates.io/crates/plotly">
99
<img src="https://img.shields.io/crates/v/plotly.svg" alt="Crates.io">

docs/book/src/fundamentals/jupyter_support.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Jupyter Support
22

3-
As of version `0.7.0`, [Plotly.rs](https://github.com/igiagkiozis/plotly) has native support for the [EvCxR Jupyter Kernel](https://github.com/google/evcxr/tree/master/evcxr_jupyter).
3+
As of version `0.7.0`, [Plotly.rs](https://github.com/plotly/plotly.rs) has native support for the [EvCxR Jupyter Kernel](https://github.com/google/evcxr/tree/master/evcxr_jupyter).
44

55
Once you've installed the required packages you'll be able to run all the examples shown here as well as all [the recipes](../recipes.md) in Jupyter Lab!
66

@@ -104,6 +104,6 @@ plot.set_layout(layout);
104104
plot.lab_display();
105105
format!("EVCXR_BEGIN_CONTENT application/vnd.plotly.v1+json\n{}\nEVCXR_END_CONTENT", plot.to_json())
106106
```
107-
For Jupyter Lab there are two ways to display a plot in the `EvCxR` kernel, either have the plot object be in the last line without a semicolon or directly invoke the `Plot::lab_display` method on it; both have the same result. You can also find an example notebook [here](https://github.com/igiagkiozis/plotly/blob/main/examples/jupyter/jupyter_lab.ipynb) that will periodically be updated with examples.
107+
For Jupyter Lab there are two ways to display a plot in the `EvCxR` kernel, either have the plot object be in the last line without a semicolon or directly invoke the `Plot::lab_display` method on it; both have the same result. You can also find an example notebook [here](https://github.com/plotly/plotly.rs/tree/main/examples/jupyter/jupyter_lab.ipynb) that will periodically be updated with examples.
108108
109-
The process for Jupyter Notebook is very much the same with one exception; the `Plot::notebook_display` method must be used to display the plot. You can find an example notebook [here](https://github.com/igiagkiozis/plotly/blob/main/examples/jupyter/jupyter_notebook.ipynb)
109+
The process for Jupyter Notebook is very much the same with one exception; the `Plot::notebook_display` method must be used to display the plot. You can find an example notebook [here](https://github.com/plotly/plotly.rs/tree/main/examples/jupyter/jupyter_notebook.ipynb)

docs/book/src/fundamentals/ndarray_support.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# `ndarray` Support
22

3-
To enable [ndarray](https://github.com/rust-ndarray/ndarray) support in [Plotly.rs](https://github.com/igiagkiozis/plotly) add the following feature to your `Cargo.toml` file:
3+
To enable [ndarray](https://github.com/rust-ndarray/ndarray) support in [Plotly.rs](https://github.com/plotly/plotly.rs) add the following feature to your `Cargo.toml` file:
44
```toml
55
[dependencies]
66
plotly = { version = ">=0.7.0", features = ["plotly_ndarray"] }
77
```
88

9-
This extends the [Plotly.rs](https://github.com/igiagkiozis/plotly) API in two ways:
9+
This extends the [Plotly.rs](https://github.com/plotly/plotly.rs) API in two ways:
1010
* `Scatter` traces can now be created using the `Scatter::from_ndarray` constructor,
1111
* and also multiple traces can be created with the `Scatter::to_traces` method.
1212

13-
The full source code for the examples below can be found [here](https://github.com/igiagkiozis/plotly/blob/main/plotly/examples/ndarray_support.rs).
13+
The full source code for the examples below can be found [here](https://github.com/plotly/plotly.rs/tree/main/examples/ndarray_support).
1414

1515
## `ndarray` Traces
1616

docs/book/src/getting_started.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<div align="center">
2-
<a href="https://github.com/igiagkiozis/plotly/tree/main">
2+
<a href="https://github.com/plotly/plotly.rs/tree/main">
33
<img src="https://img.shields.io/badge/Plotly.rs-main-brightgreen" alt="build status">
44
</a>
5-
<a href="https://github.com/igiagkiozis/plotly/actions">
6-
<img src="https://github.com/igiagkiozis/plotly/workflows/build/badge.svg" alt="build status">
5+
<a href="https://github.com/plotly/plotly.rs/actions">
6+
<img src="https://github.com/plotly/plotly.rs/workflows/build/badge.svg" alt="build status">
77
</a>
88
<a href="https://crates.io/crates/plotly">
99
<img src="https://img.shields.io/crates/v/plotly.svg" alt="Crates.io">
@@ -18,14 +18,14 @@
1818

1919
# Getting Started
2020

21-
To start using [plotly.rs](https://github.com/igiagkiozis/plotly) in your project add the following to your `Cargo.toml`:
21+
To start using [plotly.rs](https://github.com/plotly/plotly.rs) in your project add the following to your `Cargo.toml`:
2222

2323
```toml
2424
[dependencies]
2525
plotly = "0.8.4"
2626
```
2727

28-
[Plotly.rs](https://github.com/igiagkiozis/plotly) is ultimately a thin wrapper around the `plotly.js` library. The main job of this library is to provide `structs` and `enums` which get serialized to `json` and passed to the `plotly.js` library to actually do the heavy lifting. As such, if you are familiar with `plotly.js` or its derivatives (e.g. the equivalent Python library), then you should find [`plotly.rs`](https://github.com/igiagkiozis/plotly) intuitive to use.
28+
[Plotly.rs](https://github.com/plotly/plotly.rs) is ultimately a thin wrapper around the `plotly.js` library. The main job of this library is to provide `structs` and `enums` which get serialized to `json` and passed to the `plotly.js` library to actually do the heavy lifting. As such, if you are familiar with `plotly.js` or its derivatives (e.g. the equivalent Python library), then you should find [`plotly.rs`](https://github.com/plotly/plotly.rs) intuitive to use.
2929

3030
A `Plot` struct contains one or more `Trace` objects which describe the structure of data to be displayed. Optional `Layout` and `Configuration` structs can be used to specify the layout and config of the plot, respectively.
3131

@@ -93,7 +93,7 @@ The extension in the file-name path is optional as the appropriate extension (`I
9393

9494
## Saving Plots
9595

96-
To add the ability to save plots in the following formats: png, jpeg, webp, svg, pdf and eps, you can use the `kaleido` feature. This feature depends on [plotly/Kaleido](https://github.com/plotly/Kaleido): a cross-platform open source library for generating static images. All the necessary binaries have been included with `plotly_kaleido` for `Linux`, `Windows` and `MacOS`. Previous versions of [plotly.rs](https://github.com/igiagkiozis/plotly) used the `orca` feature, however, this has been deprecated as it provided the same functionality but required additional installation steps. To enable the `kaleido` feature add the following to your `Cargo.toml`:
96+
To add the ability to save plots in the following formats: png, jpeg, webp, svg, pdf and eps, you can use the `kaleido` feature. This feature depends on [plotly/Kaleido](https://github.com/plotly/Kaleido): a cross-platform open source library for generating static images. All the necessary binaries have been included with `plotly_kaleido` for `Linux`, `Windows` and `MacOS`. Previous versions of [plotly.rs](https://github.com/plotly/plotly.rs) used the `orca` feature, however, this has been deprecated as it provided the same functionality but required additional installation steps. To enable the `kaleido` feature add the following to your `Cargo.toml`:
9797

9898
```toml
9999
[dependencies]
@@ -102,7 +102,7 @@ plotly = { version = "0.8.4", features = ["kaleido"] }
102102

103103
## WebAssembly Support
104104

105-
As of v0.8.0, [plotly.rs](https://github.com/igiagkiozis/plotly) can now be used in a `Wasm` environment by enabling the `wasm` feature in your `Cargo.toml`:
105+
As of v0.8.0, [plotly.rs](https://github.com/plotly/plotly.rs) can now be used in a `Wasm` environment by enabling the `wasm` feature in your `Cargo.toml`:
106106

107107
```toml
108108
[dependencies]

docs/book/src/plotly_rs.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<div align="center">
2-
<a href="https://github.com/igiagkiozis/plotly/tree/main">
2+
<a href="https://github.com/plotly/plotly.rs/tree/main">
33
<img src="https://img.shields.io/badge/Plotly.rs-main-brightgreen" alt="build status">
44
</a>
5-
<a href="https://github.com/igiagkiozis/plotly/actions">
6-
<img src="https://github.com/igiagkiozis/plotly/workflows/build/badge.svg" alt="build status">
5+
<a href="https://github.com/plotly/plotly.rs/actions">
6+
<img src="https://github.com/plotly/plotly.rs/workflows/build/badge.svg" alt="build status">
77
</a>
88
<a href="https://crates.io/crates/plotly">
99
<img src="https://img.shields.io/crates/v/plotly.svg" alt="Crates.io">
@@ -20,17 +20,17 @@
2020

2121
Plotly.rs is a plotting library powered by [Plotly.js](https://plot.ly/javascript/). The aim is to bring over to Rust all the functionality that `Python` users have come to rely on with the added benefit of type safety and speed.
2222

23-
Plotly.rs is free and open source. You can find the source on [GitHub](https://github.com/igiagkiozis/plotly). Issues and feature requests can be posted on the [issue tracker](https://github.com/igiagkiozis/plotly/issues).
23+
Plotly.rs is free and open source. You can find the source on [GitHub](https://github.com/plotly/plotly.rs). Issues and feature requests can be posted on the [issue tracker](https://github.com/plotly/plotly.rs/issues).
2424

2525
## API Docs
2626

2727
This book is intended to be a recipe index, which closely follows the [plotly.js examples](https://plotly.com/javascript/), and is complemented by the [API documentation](https://docs.rs/plotly).
2828

2929
## Contributing
30-
Contributions are always welcomed, no matter how large or small. Refer to the [contributing guidelines](https://github.com/igiagkiozis/plotly/blob/main/CONTRIBUTING.md) for further pointers, and, if in doubt, [open an issue](https://github.com/igiagkiozis/plotly/issues).
30+
Contributions are always welcomed, no matter how large or small. Refer to the [contributing guidelines](https://github.com/plotly/plotly.rs/tree/main/CONTRIBUTING.md) for further pointers, and, if in doubt, [open an issue](https://github.com/plotly/plotly.rs/issues).
3131

3232
## License
3333

3434
Plotly.rs is distributed under the terms of the MIT license.
3535

36-
See [LICENSE-MIT](https://github.com/igiagkiozis/plotly/blob/main/LICENSE-MIT), and [COPYRIGHT](https://github.com/igiagkiozis/plotly/blob/main/COPYRIGHT) for details.
36+
See [LICENSE-MIT](https://github.com/plotly/plotly.rs/tree/main/LICENSE-MIT), and [COPYRIGHT](https://github.com/plotly/plotly.rs/tree/main/COPYRIGHT) for details.

docs/book/src/recipes.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<div align="center">
2-
<a href="https://github.com/igiagkiozis/plotly/tree/main">
2+
<a href="https://github.com/plotly/plotly.rs/tree/main">
33
<img src="https://img.shields.io/badge/Plotly.rs-main-brightgreen" alt="build status">
44
</a>
5-
<a href="https://github.com/igiagkiozis/plotly/actions">
6-
<img src="https://github.com/igiagkiozis/plotly/workflows/build/badge.svg" alt="build status">
5+
<a href="https://github.com/plotly/plotly.rs/actions">
6+
<img src="https://github.com/plotly/plotly.rs/workflows/build/badge.svg" alt="build status">
77
</a>
88
<a href="https://crates.io/crates/plotly">
99
<img src="https://img.shields.io/crates/v/plotly.svg" alt="Crates.io">
@@ -18,4 +18,4 @@
1818

1919
# Recipes
2020

21-
Most of the recipes presented here have been adapted from the official documentation for [plotly.js](https://plotly.com/javascript/) and [plotly.py](https://plotly.com/python/). Contributions of interesting plots that showcase the capabilities of the library are most welcome. For more information on the process please see [the contributing guidelines](https://github.com/igiagkiozis/plotly/blob/main/CONTRIBUTING.md).
21+
Most of the recipes presented here have been adapted from the official documentation for [plotly.js](https://plotly.com/javascript/) and [plotly.py](https://plotly.com/python/). Contributions of interesting plots that showcase the capabilities of the library are most welcome. For more information on the process please see [the contributing guidelines](https://github.com/plotly/plotly.rs/tree/main/CONTRIBUTING.md).

docs/book/src/recipes/3dcharts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 3D Charts
22

3-
The complete source code for the following examples can also be found [here](https://github.com/igiagkiozis/plotly/blob/main/plotly/examples/plot3d.rs).
3+
The complete source code for the following examples can also be found [here](https://github.com/plotly/plotly.rs/tree/main/examples/plot3d).
44

55
Kind | Link
66
:---|:----:

docs/book/src/recipes/basic_charts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Basic Charts
22

3-
The source code for the following examples can also be found [here](https://github.com/igiagkiozis/plotly/blob/main/plotly/examples/basic_charts.rs).
3+
The source code for the following examples can also be found [here](https://github.com/plotly/plotly.rs/tree/main/examples/basic_charts).
44

55
Kind | Link
66
:---|:----:

docs/book/src/recipes/financial_charts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Financial Charts
22

3-
The source code for the following examples can also be found [here](https://github.com/igiagkiozis/plotly/blob/main/plotly/examples/financial_charts.rs).
3+
The source code for the following examples can also be found [here](https://github.com/plotly/plotly.rs/tree/main/examples/financial_charts).
44

55
Kind | Link
66
:---|:----:

docs/book/src/recipes/scientific_charts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Scientific Charts
22

3-
The source code for the following examples can also be found [here](https://github.com/igiagkiozis/plotly/blob/main/plotly/examples/scientific_charts.rs).
3+
The source code for the following examples can also be found [here](https://github.com/plotly/plotly.rs/tree/main/examples/scientific_charts).
44

55
Kind | Link
66
:---|:----:

0 commit comments

Comments
 (0)