Skip to content

Commit 6fcc6aa

Browse files
committed
Pushing the docs to dev/ for branch: main, commit 40f5eb1386b244fc90b218b1d1fab28421d738c1
1 parent 27435aa commit 6fcc6aa

File tree

1,536 files changed

+6033
-6033
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,536 files changed

+6033
-6033
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

dev/_downloads/2840d928d4f93cd381486b35c2031752/plot_stock_market.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"cell_type": "markdown",
2323
"metadata": {},
2424
"source": [
25-
"## Retrieve the data from Internet\n\nThe data is from 2003 - 2008. This is reasonably calm: (not too long ago so\nthat we get high-tech firms, and before the 2008 crash). This kind of\nhistorical data can be obtained from APIs like the\n[data.nasdaq.com](https://data.nasdaq.com/) and\n[alphavantage.co](https://www.alphavantage.co/).\n\n"
25+
"## Retrieve the data from Internet\n\nThe data is from 2003 - 2008. This is reasonably calm: not too long ago so\nthat we get high-tech firms, and before the 2008 crash. This kind of\nhistorical data can be obtained from APIs like the\n[data.nasdaq.com](https://data.nasdaq.com/) and\n[alphavantage.co](https://www.alphavantage.co/).\n\n"
2626
]
2727
},
2828
{
@@ -76,7 +76,7 @@
7676
"cell_type": "markdown",
7777
"metadata": {},
7878
"source": [
79-
"## Embedding in 2D space\n\nFor visualization purposes, we need to lay out the different symbols on a\n2D canvas. For this we use `manifold` techniques to retrieve 2D\nembedding.\nWe use a dense eigen_solver to achieve reproducibility (arpack is initiated\nwith the random vectors that we don't control). In addition, we use a large\nnumber of neighbors to capture the large-scale structure.\n\n"
79+
"## Embedding in 2D space\n\nFor visualization purposes, we need to lay out the different symbols on a\n2D canvas. For this, we use `manifold` techniques to retrieve 2D\nembedding.\nWe use a dense ``eigen_solver`` to achieve reproducibility (arpack is initiated\nwith the random vectors that we do not control). In addition, we use a large\nnumber of neighbors to capture the large-scale structure.\n\n"
8080
]
8181
},
8282
{
@@ -94,7 +94,7 @@
9494
"cell_type": "markdown",
9595
"metadata": {},
9696
"source": [
97-
"## Visualization\n\nThe output of the 3 models are combined in a 2D graph where nodes\nrepresents the stocks and edges the:\n\n- cluster labels are used to define the color of the nodes\n- the sparse covariance model is used to display the strength of the edges\n- the 2D embedding is used to position the nodes in the plan\n\nThis example has a fair amount of visualization-related code, as\nvisualization is crucial here to display the graph. One of the challenge\nis to position the labels minimizing overlap. For this we use an\nheuristic based on the direction of the nearest neighbor along each\naxis.\n\n"
97+
"## Visualization\n\nThe output of the 3 models are combined in a 2D graph where nodes\nrepresent the stocks and edges the connections (partial correlations):\n\n- cluster labels are used to define the color of the nodes\n- the sparse covariance model is used to display the strength of the edges\n- the 2D embedding is used to position the nodes in the plan\n\nThis example has a fair amount of visualization-related code, as\nvisualization is crucial here to display the graph. One of the challenges\nis to position the labels minimizing overlap. For this, we use an\nheuristic based on the direction of the nearest neighbor along each\naxis.\n\n"
9898
]
9999
},
100100
{
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

dev/_downloads/70af03f765a8f15d7c1d63e836e68590/plot_stock_market.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
# Retrieve the data from Internet
1818
# -------------------------------
1919
#
20-
# The data is from 2003 - 2008. This is reasonably calm: (not too long ago so
21-
# that we get high-tech firms, and before the 2008 crash). This kind of
20+
# The data is from 2003 - 2008. This is reasonably calm: not too long ago so
21+
# that we get high-tech firms, and before the 2008 crash. This kind of
2222
# historical data can be obtained from APIs like the
2323
# `data.nasdaq.com <https://data.nasdaq.com/>`_ and
2424
# `alphavantage.co <https://www.alphavantage.co/>`_.
@@ -158,10 +158,10 @@
158158
# ---------------------
159159
#
160160
# For visualization purposes, we need to lay out the different symbols on a
161-
# 2D canvas. For this we use :ref:`manifold` techniques to retrieve 2D
161+
# 2D canvas. For this, we use :ref:`manifold` techniques to retrieve 2D
162162
# embedding.
163-
# We use a dense eigen_solver to achieve reproducibility (arpack is initiated
164-
# with the random vectors that we don't control). In addition, we use a large
163+
# We use a dense ``eigen_solver`` to achieve reproducibility (arpack is initiated
164+
# with the random vectors that we do not control). In addition, we use a large
165165
# number of neighbors to capture the large-scale structure.
166166

167167
# Finding a low-dimension embedding for visualization: find the best position of
@@ -180,15 +180,15 @@
180180
# -------------
181181
#
182182
# The output of the 3 models are combined in a 2D graph where nodes
183-
# represents the stocks and edges the:
183+
# represent the stocks and edges the connections (partial correlations):
184184
#
185185
# - cluster labels are used to define the color of the nodes
186186
# - the sparse covariance model is used to display the strength of the edges
187187
# - the 2D embedding is used to position the nodes in the plan
188188
#
189189
# This example has a fair amount of visualization-related code, as
190-
# visualization is crucial here to display the graph. One of the challenge
191-
# is to position the labels minimizing overlap. For this we use an
190+
# visualization is crucial here to display the graph. One of the challenges
191+
# is to position the labels minimizing overlap. For this, we use an
192192
# heuristic based on the direction of the nearest neighbor along each
193193
# axis.
194194

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

dev/_downloads/scikit-learn-docs.zip

1.39 KB
Binary file not shown.
-236 Bytes
-62 Bytes

0 commit comments

Comments
 (0)