-
Notifications
You must be signed in to change notification settings - Fork 0
/
NorwichODK.Rmd
596 lines (424 loc) · 20.8 KB
/
NorwichODK.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
---
title: ""
output:
html_document:
self-contained: true
---
<style type="text/css">
body{ /* Normal */
font-size: 16px;
font-family: Goudy Old Style;
}
td { /* Table */
font-size: 10px;
}
h1.title {
font-size: 40px;
color: #6cace4 !important;
font-family: Goudy Bold;
text-align: center;
}
h1 { /* Header 1 */
font-size: 34px;
color: #6cace4 !important;
font-family: Goudy Bold;
}
h2 { /* Header 2 */
font-size: 28px;
color: #002a3a !important;
font-family: Goudy Bold;
}
h3 { /* Header 3 */
font-size: 28px;
color: #002a3a !important;
font-family: Goudy Bold;
}
h4 { /* Header 4 */
font-size: 22px;
color: #425563 !important;
font-family: Goudy Bold;
}
code.r{ /* Code block */
font-size: 12px;
}
pre { /* Code block - determines code spacing between lines */
font-size: 12px;
}
</style>
<br>
![](https://odk.org/wp-content/uploads/2014/09/LOGOS-horiz.jpg)
<br>
<h1 style=" text-align: center;">NORWICH UNIVERSITY CIRCLE</h1>
```{r setup, include=FALSE}
#LOAD LIBRARIES
library(ggplot2)
library(showtext)
library(tidyverse)
library(lubridate)
library(ggrepel)
library(kableExtra)
library(gridExtra)
library(plotly)
library(RColorBrewer)
library(zoo)
library(scales)
library(knitr)
#CODE FOR SHOWTEXT
trace(grDevices::png, exit = quote({
showtext::showtext_begin()
}), print = FALSE)
#Function that will allow for using %notin% or %!in% for dplyr code chunks
'%!in%' <- Negate('%in%')
#ODK Color Palette
odk_colors <- c("#6cace4", #1 odk blue
"#b9d9eb", #2 odk light blue
"#005eb8", #3 odk dark blue
"#002a3a", #4 odk navy
"#425563", #5 odk dark gray
"#7c878e", #6 odk gray
"#d0d3d4", #7 odk light gray
"#d6a461", #8 odk gold
"#fdd086", #9 odk light purple
"#7e5475", #10 odk purple
"#693c5e", #11 odk light blue
"#f8485e", #12 odk light magenta
"#bbc592" #13 odk lime.
)
#fonts
font_add(family = "Palatino", # Name you want to use
regular = "pala.ttf")
#Get Norwich Circle ODK Data
member_data <- read.csv("Norwich Cirlce Membership.csv", stringsAsFactors = FALSE, header = TRUE)
glimpse(member_data)
#Create themes for charting
theme_1 <-
theme(
axis.text.x = element_text(size = 8, family = "Palatino"),
axis.text.y = element_text(size = 8, family = "Palatino"),
axis.title.x = element_text(size = 12, family = "Palatino"),
axis.title.y = element_text(size = 12, family = "Palatino"),
plot.title = element_text(family = "Palatino"),
plot.subtitle = element_text(family = "Palatino"),
plot.caption = element_text(family = "Palatino")
)
theme_2 <-
theme(
axis.text.x = element_text(size = 8, angle = 270, hjust = 0, vjust=0.5),
legend.position = 'top',
legend.justification = 'left',
legend.direction = 'horizontal',
legend.text = element_text(size=8),
panel.border = element_rect(color = "black", fill="#7c878e", size=1, linetype = "solid")
)
theme_3 <-
theme(
axis.text.x = element_text(size = 16, family = "Palatino"),
axis.text.y = element_blank(),
axis.title.x = element_text(size = 24, family = "Palatino", color=odk_colors[4]),
axis.title.y = element_blank(),
plot.title = element_text(family = "Palatino", size = 30, color=odk_colors[4]),
plot.subtitle = element_text(family = "Palatino", size = 20),
plot.caption = element_text(family = "Palatino", size = 20),
axis.ticks = element_blank()#,
#line = element_blank()
)
theme_4 <-
theme(
axis.text.x = element_text(size = 16, family = "Palatino"),
axis.text.y = element_blank(),
axis.title.x = element_text(size = 24, family = "Palatino", color=odk_colors[4]),
axis.title.y = element_blank(),
plot.title = element_text(family = "Palatino", size = 30, color=odk_colors[4]),
plot.subtitle = element_text(family = "Palatino", size = 20),
plot.caption = element_text(family = "Palatino"),
axis.ticks = element_blank(),
legend.position = 'top',
legend.justification = 'left',
legend.direction = 'horizontal',
legend.text = element_text(size = 16, family = "Palatino"),
legend.title = element_blank()
)
knitr::opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE)
```
# {.tabset}
## About Us
### Our History
<br>
#### Omicron Delta Kappa
[Omicron Delta Kappa](www.odk.org) ($\small O \Delta K$) was founded in 1914 by a group of students and faculty at Washington and Lee University in Lexington, Virginia. It was founded on the belief that collegiate leadership should be recognized and encouraged across all facets of campus life.
$\small O \Delta K$ has over 300 chapters -- referred to as "circles" -- and initiates around 8,000 new members annually. National membership exceeds 320,000 students and professionals across higher education, business, entertainment, sports, mass media, technology, the sciences, law, government, military service and an array of other fields.
$\small O \Delta K$ promotes its ideals through its vision and leadership values.
<br>
+ **$\small O \Delta K$ Vision**
+ Omicron Delta Kappa is a multi-generational society that excels in recognizing and connecting collaborative and inclusive leaders.
<br>
+ **$\small O \Delta K$ Ideals & Leadership Values**
+ **Collaboration:** Working together to achieve a defined and common purpose.
+ **Inclusivity:** Actively seeking, embracing, and advancing a diverse group of individuals.
+ **Integrity:** Aligning one's values and beliefs with behaviors and speech.
+ **Knowledge:** Striving for excellence in academics and to pursue lifelong learning.
+ **Service:** Answering the call to action from one's community, country, or organization.
<br>
#### Norwich University Circle
[Norwich University](www.norwich.edu), founded in 1819 and located in Northfield, Vermont, is the oldest private and senior military college in the United States and offers bachelor's and master's degrees on-campus and online (wikipedia).
The Norwich University Circle of $\small O \Delta K$ was founded in 2015. It was the first Circle established to include members from an institution's graduate programs and one the first to include members who participated in campus life at distance through virtual platforms. The Norwich University Circle has 58 student/alumni, faculty, and honorary members as of Fall 2021.
***
## Candidate Info
### Application Information for Interested Candidates
<br>
#### Candidacy Eligibility and Application Process
* **You must be (1) a Current Undergraduate Student of sophomore status or higher, (2) a Current Graduate Student in the MSL Major or (3) an MBA Major with Organizational Leadership Concentration or (4) an alumni of one of those two graduate programs from Norwich University.** If you are a current graduate student, you must have completed four seminars of graduate-level work.
* **All student candiates -- regardless of level -- must achieve and maintain GPA of: 3.70.**
* **Complete Norwich University's $\small O \Delta K$ Circle Application Forms**:
+ [For Norwich Students/Faculty](https://nextgensso.com/sp/startSSO.ping?PartnerIdpId=https://sts.windows.net/34fcb756-3a7c-4dea-ab4d-5324bc02ef5e/&TargetResource=https%3a%2f%2fdynamicforms.ngwebsolutions.com%2fSubmit%2fStart%2f0f6b1f77-bc05-44e9-b987-0c15f15ba8f0)
+ [For Alumni/Non-Students](https://dynamicforms.ngwebsolutions.com/Submit/Start/0f6b1f77-bc05-44e9-b987-0c15f15ba8f0?SSO=N)
+ Also include an essay describing your demonstrated Professional Leadership results in each of Norwich University’s 4 Values-Based Leadership Dimensions. First-Person, APA 7th Edition format with Cover Page and Reference Page. Not To Exceed 1500 words. Be sure to cover all 4 dimensions:
1. Leading the Self
2. Leading Others
3. Leading in Service
4. Leading the Organization.
* **Submit two letters of testimony** supporting the above leadership results. Not to exceed 2 pages each.
* If accepted, you will need to pay one-time national dues of $88.00, one-time local dues of $50.00, and complete the $\small O \Delta K$ Application Form. Instructions on how to pay the dues will be given with your acceptance notification.
<br>
#### Acceptance and Induction
**To be inducted into $\small O \Delta K$ after you have been accepted:**
* You must fulfill participation requirements: You must achieve and maintain GPA of 3.70.
* Have demonstrated Professional Leadership excellence in one or more of Norwich University’s 4 Values-Based Leadership Dimensions.
* Received an Acceptance Letter (only the top 3% of the entire University population can beaccepted based on GPA and application).
* Complete the $\small O \Delta K$ Application and pay one-time national dues of $88.00, one-time local dues of$50.00 (due a month before the induction).
+ Active participation on at least one committee, including executive committee
+ Attendance at virtual meetings
+ Attendance at a minimum of two events per semester (in person or virtual)
Please be aware that acceptance into $\small O \Delta K$ requires active participation in the circle. Review the information below and consider which office you hope to maintain in the Norwich $\small O \Delta K$ Circle.
***
## Current Efforts & News
### Circle Happenings
Details to come.
<br>
#### The Cirlce of Omicron Delta Kappa Publication
$\small O \Delta K$ publishes a magazine called [**The Circle**](https://odk.org/get-involved/thecircle/) which can be accessed using the link.
<br>
#### Upcoming National Events
A current list of National $\small O \Delta K$ events can be found [here](https://odk.org/circle-officers/dates-and-deadlines/). A few recurring annual events of note include $\small O \Delta K$'s **National Leadership Conference** (June 2-5, 2022) and **National Day of Service** (April 14, 2022).
<br>
#### Strategic Plan
$\small O \Delta K$ has initiated a 2022-2024 Strategic Plan. It has 3 goals and 12 objectives as detailed below:
<br>
1. Provide and excellent, relevant campus member and circle experience.
+ Provide greater support for advisors.
+ Unify and understand circle programming.
+ Invest in a targeted redevelopment plan for under-performing circles in order to develop a sustainable culture that offers a premium and relevant experience.
+ Redevelop extension practices to ensure new circles establish a sustainable culture and the desired reputation on campus.
+ Develop strategies to assess and encourage high-level circle performance.
<br>
2. Build a more diverse and inclusive organization.
+ Create incentives for circles to recruit, induct, and engage more graduate, professional, faculty, staff, alumni, and community members including honorary members.
+ Develop and implement policies that ensure equitable access to membership for historically marginalized and underrepresented individuals.
+ Establish new pathways for non-campus individuals to join Omicron Delta Kappa.
<br>
3. Champion and celebrate collaborative and inclusive leadership.
+ Develop strategies for greater celebration and engagement of individual members.
+ Develop a national marketing campaign to clearly communicate the Society's mission and impact among all audiences, including those not on campus.
+ Develop a national communications program (free and paid media) on the topic of collaborative and inclusive leadership.
+ Sponsor events, prizes, and activities that celebrate and recognize collaborative leadership.
***
## Circle Members
### Membership Benefits
<br>
#### Scholarships
Omicron Delta Kappa awards more than 40 [Scholarships](https://odk.org/get-involved/scholarships/) per year to help collegiate members continue graduate and professional studies.
<br>
#### Other Membership Benefits
Check out other membership benefits [here](https://odk.org/members/benefits-membership/).
### Organizations represented by Circle Members
+ Norwich University
+ United States Army
+ United States Marine Corps
+ United States Air Force
+ International Rescue Committee
+ ISE Consulting
+ Jacobs Naval Systems
+ Jewish Federation of Sarasota-Manaty
+ New Mexico State University - Los Alamos Neutron Science Center
+ Pepco Holdings, Inc.
+ Scaled Composites, LLC
+ Select Medical
+ T. Rowe Price
<br>
### Circle Officers
Student Officers (e.g. President, Vice President, Treasurer) of the Norwich University circle undertake the following responsibilities:
* Establish a regular circle meeting schedule as well as officer meetings
* Work with circle coordinator and faculty adviser to set the circle’s calendar for the year ensuring that membership selection, reporting, and initiation happen in a timely manner
* Facilitate goal setting
* Encourage, support, and motivate circle
* Update college or university administrators on the circle’s activities
* Be familiar with national bylaws as well as the circle’s bylaws and policies
* Work with circle coordinator and faculty adviser to ensure minimum circle standards are being met
* Host an orientation for new members, explaining $\small O \Delta K$’s history and purpose and their obligations as members
* Preside over induction ceremony
* Help maintain circle documents
* Determine appropriate programming for the campus
* Ensure circle is represented at national convention and regional drive-in workshops
* Encourage members to remain in contact with $\small O \Delta K$ after graduation
***
## Analytics
Total Norwich University Circle Members = 58
```{r memb_through_time, fig.width = 5, fig.height = 3}
#Table to plot inductees through time
member_data %>%
select(Status, Last.Name) %>%
rename(Year = Status) %>%
rename(`Last Name` = Last.Name) %>%
mutate(Year = as.factor(year(as.Date(Year, format = "%m/%d/%Y")))) %>%
group_by(Year) %>%
summarize(Inductees = sum(!`Last Name` == "")) %>%
ggplot(aes(x = Year, y = Inductees)) +
geom_col(fill = odk_colors[1]) +
geom_text(aes(label = Inductees), family = "Palatino", size=8, nudge_y = 2,
#label.padding = unit(0.2, "lines"),
color = odk_colors[4],
#fill = "white"
) +
labs(title = "Count of Norwich Circle Inductees", color = odk_colors[4]) +
xlab("Year") +
ylab("") +
theme_classic() +
theme_3
```
<br>
```{r memb_states, fig.width = 5, fig.height = 3}
#Table to plot inductees through time
member_data %>%
select(State, Last.Name) %>%
rename(`Last Name` = Last.Name) %>%
mutate(State = as.factor(State)) %>%
group_by(State) %>%
summarize(Members = sum(!`Last Name` == "")) %>%
filter(Members != 0) %>%
arrange(desc(Members)) %>%
ggplot(aes(x = reorder(State, desc(Members)), y = Members)) +
geom_col(fill = odk_colors[1]) +
geom_text(aes(label = Members), family = "Palatino", size=8, nudge_y = 2,
#label.padding = unit(0.2, "lines"),
color = odk_colors[4],
#fill = "white"
) +
labs(title = "Member Count by State", color = odk_colors[4]) +
xlab("State") +
ylab("") +
theme_classic() +
theme_3
```
<br>
```{r memb_split, fig.width = 5, fig.height = 1.75}
#Table to plot inductees through time
member_data %>%
select(Class, Last.Name) %>%
rename(`Last Name` = Last.Name) %>%
mutate(`Inductee Status` = as.factor(Class)) %>%
group_by(`Inductee Status`) %>%
summarize(Members = sum(!`Last Name` == "")) %>%
filter(Members != 0) %>%
arrange(desc(Members)) %>%
ggplot(aes(x = 1, y = Members, fill = reorder(`Inductee Status`, Members))) +
geom_col(size = 1) +
geom_text(aes(label = Members), family = "Palatino", size=8, position = position_stack(vjust = 0.5),
#label.padding = unit(0.2, "lines"),
color = odk_colors[4],
#fill = "white"
) +
scale_fill_manual(values = rev(odk_colors[c(1,2,6,7)]),
guide = guide_legend(reverse = TRUE)) +
labs(title = "Member Split by Inductee Status", color = odk_colors[4]) +
xlab("") +
ylab("Member Count") +
coord_flip() +
theme_classic() +
theme_4
```
***
## Leadership Tools & Social Media
### National Social Media
+ [ODK HQ YouTube](https://www.youtube.com/channel/UCv2JhK5ltEU18yvMQkb1J1w)
+ [ODK HQ Instagram](https://www.instagram.com/odk_hq/)
+ [ODK1914 on Twitter](https://twitter.com/ODK1914)
+ [ODK MeritPages](https://odk.meritpages.com/)
+ [ODK LinkedIn](https://www.linkedin.com/groups/144429/)
+ [ODK Facebook](https://www.facebook.com/OmicronDeltaKappa)
<br>
### Leadership Resources
<br>
#### Norwich Circle Book Recommendations
+ Leadership
+ The 21 Irrefutable Laws of Leadership by John Maxwell
+ Culture Code by Daniel Coyle
+ Extreme Ownership by Jocko Willink
+ Fierce Conversations by Susan Scott
+ Multipliers by Liz Wiseman
+ Leader as Coach by David Peterson
+ The Leadership Challenge by James Kouzes and Barry Posner
+ Radical Candor by Kim Scott
+ Radical Inclusion by Martin Dempsey
+ Facilitation, Organizational Learning, & Change Management
+ The Fifth Discipline by Peter Senge
+ How the Way We Talk Can Change the Way We Work by Robert Kegan and Lis Lahey
+ Leading Change by John Kotter
+ The Skilled Facilitator by Roger Schwarz
+ Self-Development & Productivity
+ 12 Rules for Life: An antidote to chaos by Jordan Peterson
+ Atomic Habits by James Clear
+ Deep Work by Cal Newport
+ Emotional Agility by Susan David
+ Grit by Angela Duckworth
+ Insight: Why we're not as self-aware as we think... by Tasha Eurich
+ Learned Optimism by Martin Seligman
+ Mindset by Carol Dweck
+ Social Intelligence by Karl Albrecht
+ What Got You Here Won't Get You There by Marshall Goldsmith
+ Working Identity by Hermina Ibarra
<br>
#### Leadership Influencers
+ **[The Art of Self-Coaching](https://www.edbatista.com/the-art-of-self-coaching-public-course.html) by Ed Batista. An absolute must.**
+ [3x5 Leadership](https://3x5leadership.com/articles/series/): Leadership development from a West Point and Ivy League graduate.
+ [Jocko Podcast](https://jockopodcast.com/jocko-podcast-books/): Landing page will be the books covered in various episodes.
+ [Coaching for Leaders](https://coachingforleaders.com/) with Dave Stachowiak.
+ [EntreLeadership](https://www.ramseysolutions.com/shows/the-entreleadership-podcast): Ramsey Solutions
+ [Adam Grant](https://www.adamgrant.net/writing/articles/) articles.
+ [Leadership podcast ideas.](https://blog.feedspot.com/leadership_podcasts/)
<br>
#### Publications
+ [Harvard Business Review](https://hbr.org/)
+ [MIT Sloan Management Review](https://sloanreview.mit.edu/)
+ [McKinsey Quarterly](https://www.mckinsey.com/quarterly/the-magazine)
+ [Other notable journals (Benedictine University)](https://researchguides.ben.edu/organization-development)
<br>
#### Coaching and Self-Development
+ [The Art of Self-Coaching](https://www.edbatista.com/the-art-of-self-coaching-public-course.html) by Ed Batista. In case you missed it above.
+ [Simplify Magazine](https://simplifymagazine.com/issues/): Excellent for leading self.
+ [Find a coach!](https://www.coach.me/find-a-coach): coach.me
<br>
#### Productivity Tools
+ [Habit Hub: Routine & Schedule app](https://apps.apple.com/us/app/habit-hub-routine-schedule/id1149192857): Free. Awesome for habit development.
+ [Cozi Calendar](https://www.cozi.com/calendar/): Free. A great shared family/team calendar app.
+ [Trello](https://trello.com/home) Kanban board app great for project management.
<br>
#### Change Management
+ [Prosci Blog](https://blog.prosci.com/): Ideas for influencing change.
+ [Change Management Review](https://www.changemanagementreview.com/)
<br>
#### Leadership-focused Organizations
+ [Center for Creative Leadership](https://www.ccl.org/)
<br>
#### Leadership Academia
+ Norwich University's [Master of Science in Leadership](https://online.norwich.edu/academic-programs/masters/leadership)
+ Northwestern University's [KelloggInsight](https://insight.kellogg.northwestern.edu/)
+ Stanford University's [Leadership Insights](https://www.gsb.stanford.edu/insights/leadership)
+ INSEAD [Knowledge](https://knowledge.insead.edu/)
+ Georgetown University's [Institute for Transformational Leadership](https://scs.georgetown.edu/departments/37/institute-for-transformational-leadership/)
+ Benedictine University's [Center for Values-Driven Leadership](https://cvdl.ben.edu/)
+ University of Maryland's [Center for Leadership, Innovation and Change](https://www.rhsmith.umd.edu/centers/clic)
<br>
#### Books / Reading Lists
+ [McKinsey on Books](https://www.mckinsey.com/featured-insights/mckinsey-on-books): Check out the books in the Organizational Behavior section.
+ [3x5 Leadership Bookshelf](https://3x5leadership.com/bookshelf/bookshelf-readinglist/)
+ [U.S. Military Professional Reading Lists](https://library.citadel.edu/professionalreadinglist)