-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhow-to-open-source.Rmd
142 lines (84 loc) · 2.15 KB
/
how-to-open-source.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
---
title: "How to Contribute to Open Source"
author: 'Kim Fitter '
date: "30 October 2019"
output:
html_document: default
xaringan::moon_reader: default
---
```{r setup, include=FALSE}
options(htmltools.dir.version = TRUE)
knitr::opts_chunk$set(
echo = FALSE,
message = FALSE,
warning=FALSE
)
```
```{r load packages}
library(xaringan)
library(networkD3)
library(visNetwork)
library(bubbles)
library(widgetframe)
```
class: inverse, center, middle
<center> <img src="https://i.imgflip.com/2poafk.jpg"> </center>
---
class: inverse
## My Journey
```{r journey}
# Create nodes and edges
nodes <- data.frame(id = 3:1,
value = c(20,20,20),
label=c("PREVIOUS CAREER \n - PROJECT MANAGER ","CAREER CHANGE","NEW CAREER - CODER"),
font.color = "#ffffff",
shape=c("circle","triangle","circle"))
edges <- data.frame(from = c(2,3), to = c(1,2))
# Plot the 3 node network
v <- visNetwork(nodes, edges, width = "100%") %>%
visEdges(arrows = "to",length = 300) %>%
visNodes(color = "#13b3a9")
v
```
---
# The Skills
```{r skills}
# Create bubbles for the skills
b <- bubbles(value = rep(5,5),
label = c("CODING","WRITING","SPEAKING","ORGANISING","INTERESTS"),
textColor = "white", color="#13b3a9")
frameWidget(b)
```
---
# Open Source Communities
```{r communities}
# Load sample data
data(MisLinks)
data(MisNodes)
# Plot a social network
f <- forceNetwork(Links = MisLinks, Nodes = MisNodes,
Source = "source", Target = "target",
Value = "value", NodeID = "name",charge = -50,
Group = "group", opacity = 0.9)
frameWidget(f)
```
---
# Tips
- Find an area that interests you
- Create a GitHub profile
- Create a blog
- Give technical feedback
- Write and speak
and......
<center> <img src="https://i.gifer.com/1tUl.gif"> </center>
---
class: inverse, center, middle
# Thanks!
Slides created with the `xaringan` R package
### Link to materials
https://github.com/kimnewzealand/R-tutorials
### Blogs
http://www.validly.co/
https://kimnewzealand.github.io/
### Get in touch
Twitter @Kim_Fitter