Skip to content

Commit e03df52

Browse files
author
Will McGinnis
committed
added mandelbrot example
1 parent f45dec5 commit e03df52

File tree

6 files changed

+297231
-2
lines changed

6 files changed

+297231
-2
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ Mean Values
4646
Takes in a csv with two columns and finds the mean of each column, using a custom reducer function. Afterwards, it
4747
formats a string nicely with the output and dumps that onto disk.
4848

49+
Mandelbrot Set
50+
--------------
51+
52+
Creates a Mandelbrot set from a set of candidates. Inspired by [this post](http://1oclockbuzz.com/2015/11/24/pyspark-and-the-mandelbrot-set-overkill-indeed/)
53+
4954
Features
5055
========
5156

@@ -62,6 +67,7 @@ CSV data-source (read\_csv)
6267

6368
* data enrichment
6469
* mean values
70+
* mandelbrot
6571

6672
String data-source (from\_elements)
6773
-----------------------------------
@@ -74,6 +80,7 @@ Text output (write\_text)
7480
* word count
7581
* data enrichment
7682
* mean values
83+
* mandelbrot
7784

7885
CSV output (write\_csv)
7986
-----------------------
@@ -91,6 +98,7 @@ Transformations: Map
9198
* trending hashtags
9299
* data enrichment
93100
* mean values
101+
* mandelbrot
94102

95103
Transformations: FlatMap
96104
------------------------
@@ -106,6 +114,7 @@ Transformations: Filter
106114
-----------------------
107115

108116
* trending hashtags
117+
* mandelbrot
109118

110119
Transformations: Reduce
111120
-----------------------

mandelbrot/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__author__ = 'willmcginnis'

0 commit comments

Comments
 (0)