Skip to content

Commit ca5b8b5

Browse files
authored
make capitalization of pandas, NumPy, and scikit-learn consistent with their docs/marketing guidelines (#44)
1 parent 8a96bce commit ca5b8b5

1 file changed

Lines changed: 16 additions & 16 deletions

File tree

index.html

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -108,32 +108,32 @@
108108
<!-- Three columns of text below the carousel -->
109109
<h2 class="featurette-heading">Integrates with existing projects</h2>
110110
<h2 class="featurette-subheading">Built with the broader community</h2>
111-
<p>Dask is open source and freely available. It is developed in coordination with other community projects like Numpy, Pandas, and Scikit-Learn.</p>
111+
<p>Dask is open source and freely available. It is developed in coordination with other community projects like NumPy, pandas, and scikit-learn.</p>
112112
<div class="row">
113113

114114
<div class="col-lg-4">
115-
<h2 class="mt-3">Numpy</h2>
115+
<h2 class="mt-3">NumPy</h2>
116116
<img src="_images/dask-array-black-text.svg" class="top-image">
117-
<p>Dask arrays scale Numpy workflows, enabling multi-dimensional data analysis in earth science, satellite imagery, genomics, biomedical applications, and machine learning algorithms.</p>
117+
<p>Dask arrays scale NumPy workflows, enabling multi-dimensional data analysis in earth science, satellite imagery, genomics, biomedical applications, and machine learning algorithms.</p>
118118
<p>
119119
<a class="btn btn-outline-secondary" href="https://docs.dask.org/en/latest/array.html" role="button">Learn More &raquo;</a>
120120
<a class="btn btn-secondary" href="https://mybinder.org/v2/gh/dask/dask-examples/main?urlpath=lab/tree/array.ipynb" role="button">Try Now &raquo;</a>
121121
</p>
122122
</div><!-- /.col-lg-4 -->
123123
<div class="col-lg-4">
124-
<h2 class="mt-3">Pandas</h2>
124+
<h2 class="mt-3">pandas</h2>
125125
<img src="_images/dask-dataframe.svg" class="top-image">
126-
<p>Dask dataframes scale Pandas workflows, enabling applications in time series, business intelligence, and general data munging on big data.</p>
126+
<p>Dask dataframes scale pandas workflows, enabling applications in time series, business intelligence, and general data munging on big data.</p>
127127
<p>
128128
<a class="btn btn-outline-secondary" href="https://docs.dask.org/en/latest/dataframe.html" role="button">Learn More &raquo;</a>
129129
<a class="btn btn-secondary" href="https://mybinder.org/v2/gh/dask/dask-examples/main?urlpath=lab/tree/dataframe.ipynb" role="button">Try Now &raquo;</a>
130130
</p>
131131
</div><!-- /.col-lg-4 -->
132132
<div class="col-lg-4">
133133
<!-- <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Rosenbrock_function.svg/300px-Rosenbrock_function.svg.png" class="top-image"> -->
134-
<h2 class="mt-3">Scikit-Learn</h2>
134+
<h2 class="mt-3">scikit-learn</h2>
135135
<img src="_images/sklearn-classification.png" class="top-image">
136-
<p>Dask-ML scales machine learning APIs like Scikit-Learn and XGBoost to enable scalable training and prediction on large models and large datasets.</p>
136+
<p>Dask-ML scales machine learning APIs like scikit-learn and XGBoost to enable scalable training and prediction on large models and large datasets.</p>
137137
<p>
138138
<a class="btn btn-outline-secondary" href="https://ml.dask.org/" role="button">Learn More &raquo;</a>
139139
<a class="btn btn-secondary" href="https://mybinder.org/v2/gh/dask/dask-examples/main?urlpath=lab/tree/machine-learning.ipynb" role="button">Try Now &raquo;</a>
@@ -150,24 +150,24 @@ <h2 class="mt-3">Scikit-Learn</h2>
150150
<div class="col-md-7">
151151
<h2 class="featurette-heading">Familiar for Python users</h2>
152152
<h2 class="featurette-subheading">and easy to get started</h2>
153-
<p class="lead">Dask uses existing Python APIs and data structures to make it easy to switch between Numpy, Pandas, Scikit-learn to their Dask-powered equivalents.</>
153+
<p class="lead">Dask uses existing Python APIs and data structures to make it easy to switch between NumPy, pandas, scikit-learn to their Dask-powered equivalents.</>
154154
<p class="lead">You don't have to completely rewrite your code or retrain to scale up.</p>
155155
<a class="btn btn-secondary" href="https://docs.dask.org/en/latest/api.html" role="button">Learn About Dask APIs &raquo;</a>
156156
</div>
157157

158158
<div class="col-md-5 code-block">
159-
<pre><code class="language-python"># Arrays implement the Numpy API
159+
<pre><code class="language-python"># Arrays implement the NumPy API
160160
import dask.array as da
161161
x = da.random.random(size=(10000, 10000),
162162
chunks=(1000, 1000))
163163
x + x.T - x.mean(axis=0)</code></pre>
164164

165-
<pre><code class="language-python"># Dataframes implement the Pandas API
165+
<pre><code class="language-python"># Dataframes implement the pandas API
166166
import dask.dataframe as dd
167167
df = dd.read_csv('s3://.../2018-*-*.csv')
168168
df.groupby(df.account_id).balance.sum()</code></pre>
169169

170-
<pre><code class="language-python"># Dask-ML implements the Scikit-Learn API
170+
<pre><code class="language-python"># Dask-ML implements the scikit-learn API
171171
from dask_ml.linear_model \
172172
import LogisticRegression
173173
lr = LogisticRegression()
@@ -226,19 +226,19 @@ <h2 class="featurette-heading" id="powered-by"><a href="#powered-by" class="link
226226
<div class="row top-padding-small">
227227
<div class="col-md-6 flex-item">
228228
<a class="flex-item-left" href="https://pandas.pydata.org">
229-
<img src="_images/pandas.svg" alt="Pandas logo">
229+
<img src="_images/pandas.svg" alt="pandas logo">
230230
</a>
231231
<div>
232-
<h4>Pandas</h4>
232+
<h4>pandas</h4>
233233
<p>Tabular data analysis</p>
234234
</div>
235235
</div>
236236
<div class="col-md-6 flex-item">
237237
<a class="flex-item-left" href="https://numpy.org/">
238-
<img src="_images/numpy.png" alt="Numpy logo">
238+
<img src="_images/numpy.png" alt="NumPy logo">
239239
</a>
240240
<div>
241-
<h4>Numpy</h4>
241+
<h4>NumPy</h4>
242242
<p>Array and numerical computing</p>
243243
</div>
244244
</div>
@@ -250,7 +250,7 @@ <h4>Numpy</h4>
250250
<img src="_images/scikit-learn-logo.png" alt="scikit-learn logo">
251251
</a>
252252
<div>
253-
<h4>Scikit-learn</h4>
253+
<h4>scikit-learn</h4>
254254
<p>Machine learning in Python</p>
255255
</div>
256256
</div>

0 commit comments

Comments
 (0)