Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ testlocaties_24_augustus_adressen 2.csv
testlocaties_24_augustus_adressen 3.csv
testlocaties_24_augustus_adressen(2).csv
*.csv
testlocaties_24_augustus_adressen.json
testlocaties_24_augustus_adressen 2.json

above filenames are a mess because of an issue with iCloud duplicating stuff
Binary file added docs/assets/img/domain_range_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/kaart_avondklok.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/method_chaining_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/pie_chart_avondklok.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/svg_canvas_vector_example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/svg_example_laurens.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/img/waffle_chart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
189 changes: 184 additions & 5 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,18 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="./styles.css">
<link rel="stylesheet" type="text/css" href="../assets/css/index.css">
<title>Functional Programming</title>
<!-- <script src="https://d3js.org/d3.v5.min.js"></script> -->

</head>
<body>
<header id="top">
<h1>functional programming</h1>
<nav>
<ul>
<li><a href="/functional-programming/">RDW Data</a></li>
<li><a href="/functional-programming/surveydata">Survey Data</a></li>
<li><a href="/">RDW Data</a></li>
<li><a href="/surveydata">Survey Data</a></li>
</ul>
</nav>
</header>
Expand All @@ -24,8 +25,186 @@ <h1>functional programming</h1>
<h2>RDW Data</h2>
<p>Cleaned by doing stuff.</p>
<ul>
<!--
<li>This would display if the 'eyeColors'-collection were empty</li>
<!--



















































































































































































-->
</ul>
</article>
Expand Down
24 changes: 17 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
},
"dependencies": {
"d3": "^5.16.0",
"d3-fetch": "^2.0.0",
"nodemon": "^2.0.2",
"rgb-hex": "^3.0.0"
}
Expand Down
Loading