Skip to content

Commit 0f2e29f

Browse files
committed
Update README.md
1 parent b3e9603 commit 0f2e29f

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,6 @@ Thunder doesn't require Spark and can run locally without it, but Spark and Thun
7979

8080
Once you have a running cluster with a valid `SparkContext` — this is created automatically as the variable `sc` if you call the `pyspark` executable — you can pass it as the `engine` to any of Thunder's loading methods, and this will load your data in distributed `'spark'` mode. In this mode, all operations will be parallelized, and chained operations will be lazily executed.
8181

82-
Here's an example where we load distributed `series` data (in this case random data) and use parallelized versions of `detrend()` and `convolve()` and `max()`, and then call `toarray()` to return a local [`numpy`](https://github.com/numpy/numpy) array.
83-
84-
```python
85-
import thunder as td
86-
87-
data = td.series.fromrandom(engine=sc)
88-
ts = data.detrend().convolve(signal).max().toarray()
89-
```
90-
9182
## contributing
9283

9384
Thunder is a community effort! The codebase so far is due to the excellent work of the following individuals:

0 commit comments

Comments
 (0)