Skip to content

Commit cb01421

Browse files
committed
Pushing the docs to dev/ for branch: master, commit 3593194b69c4330261925b451dd8e445c17c560a
1 parent 554b170 commit cb01421

File tree

967 files changed

+2943
-2943
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

967 files changed

+2943
-2943
lines changed
18 Bytes
Binary file not shown.
18 Bytes
Binary file not shown.

dev/_downloads/plot_stock_market.ipynb

+1-1
Large diffs are not rendered by default.

dev/_downloads/plot_stock_market.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ def quotes_historical_google(symbol, start_date, end_date):
124124
data = np.genfromtxt(response, delimiter=',', skip_header=1,
125125
dtype=dtype, converters=converters,
126126
missing_values='-', filling_values=-1)
127-
min_date = min(data['date'], default=datetime.min.date())
128-
max_date = max(data['date'], default=datetime.max.date())
127+
min_date = min(data['date']) if len(data) else datetime.min.date()
128+
max_date = max(data['date']) if len(data) else datetime.max.date()
129129
start_end_diff = (end_date - start_date).days
130130
min_max_diff = (max_date - min_date).days
131131
data_is_fine = (

dev/_downloads/scikit-learn-docs.pdf

-9.24 KB
Binary file not shown.
235 Bytes
235 Bytes
-12 Bytes
-11 Bytes
251 Bytes
-127 Bytes
-183 Bytes
263 Bytes
63 Bytes
63 Bytes
-90 Bytes
-90 Bytes
1 Byte
1 Byte
66 Bytes
66 Bytes
129 Bytes
129 Bytes
-121 Bytes
-121 Bytes
17 Bytes
12 Bytes
12 Bytes
303 Bytes
-886 Bytes
-50 Bytes
-50 Bytes
66 Bytes
-3 Bytes

dev/_sources/auto_examples/applications/plot_face_recognition.rst.txt

+20-20

dev/_sources/auto_examples/applications/plot_model_complexity_influence.rst.txt

+15-15

dev/_sources/auto_examples/applications/plot_out_of_core_classification.rst.txt

+29-29

dev/_sources/auto_examples/applications/plot_outlier_detection_housing.rst.txt

+1-1

dev/_sources/auto_examples/applications/plot_prediction_latency.rst.txt

+1-1

dev/_sources/auto_examples/applications/plot_species_distribution_modeling.rst.txt

+2-2

0 commit comments

Comments
 (0)