Skip to content

Commit c4e16dc

Browse files
committed
via zoom
1 parent 460bdf3 commit c4e16dc

File tree

9 files changed

+450
-503
lines changed

9 files changed

+450
-503
lines changed

.Rhistory

Lines changed: 337 additions & 337 deletions
Large diffs are not rendered by default.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"activeTab" : 0
2+
"activeTab" : 4
33
}
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"left" : {
3-
"panelheight" : 756,
4-
"splitterpos" : 275,
3+
"panelheight" : 865,
4+
"splitterpos" : 314,
55
"topwindowstate" : "NORMAL",
6-
"windowheight" : 797
6+
"windowheight" : 905
77
},
88
"right" : {
9-
"panelheight" : 756,
10-
"splitterpos" : 408,
9+
"panelheight" : 865,
10+
"splitterpos" : 466,
1111
"topwindowstate" : "NORMAL",
12-
"windowheight" : 797
12+
"windowheight" : 905
1313
}
1414
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"TabSet1" : 0,
3-
"TabSet2" : 1,
3+
"TabSet2" : 4,
44
"TabZoom" : {
55
}
66
}

.Rproj.user/6F6C4B3A/rmd-outputs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
D:/Coding/MMFAIR/weighted_two_stage.html
21
D:/Coding/MMFAIR/0contactinfo.html
3-
D:/Coding/MMFAIR/weighted_two_stage.html
4-
D:/Coding/MMFAIR/weighted_two_stage.html
5-
D:/Coding/MMFAIR/weighted_two_stage.html
2+
D:/Coding/MMFAIR/0contactinfo.html
3+
D:/Coding/MMFAIR/0contactinfo.html
4+
D:/Coding/MMFAIR/0contactinfo.html
5+
D:/Coding/MMFAIR/0contactinfo.html
66

77

88

0contactinfo.Rmd

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,15 @@ Contact </br>
8080
</i> Xing </a>
8181

8282
Websites </br>
83-
<a href="https://schmidtpaul.github.io/crashcouRse/">
84-
<i class="fa fa-window-maximize" style="color: #003f75ff;">
85-
</i> CrashcouRse: R für Bio- und Agrarwissenschaftler </a> </br>
8683
<a href="https://schmidtpaul.github.io/DSFAIR/">
8784
<img src="https://raw.githubusercontent.com/SchmidtPaul/DSFAIR/master/img/logo/favicon-32x32.png" width=16 height=16/>
8885
</i> DSFAIR: Data Science for Agriculture in R </a> </br>
8986
<a href="https://schmidtpaul.github.io/MMFAIR/">
9087
<img src="https://raw.githubusercontent.com/SchmidtPaul/MMFAIR/master/img/logo/favicon-32x32.png" width=16 height=16/>
9188
</i> MMFAIR: Mixed Models for Agriculture in R </a> </br>
89+
<a href="https://schmidtpaul.github.io/crashcouRse/">
90+
<i class="fa fa-window-maximize" style="color: #003f75ff;">
91+
</i> CrashcouRse: R für Bio- und Agrarwissenschaftler </a> </br>
9292

9393
</p>
9494

@@ -102,18 +102,28 @@ text %>%
102102
```{r workshops, echo=FALSE, warning=FALSE, message=FALSE}
103103
GerFlagURL <- "https://cdn.countryflags.com/thumbs/germany/flag-round-250.png"
104104
USAFlagURL <- "https://cdn.countryflags.com/thumbs/united-states-of-america/flag-round-250.png"
105+
zoomLogoURL <- "https://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Zoom_Communications_Logo.svg/1200px-Zoom_Communications_Logo.svg.png"
105106
106107
LangFlags <- workshops %>%
107108
select(Language) %>%
108109
mutate(LangURL = case_when(Language == "Ger" ~ GerFlagURL,
109110
Language == "Eng" ~ USAFlagURL,
110-
T ~ NA_character_)) %>%
111-
pull(LangURL)
111+
T ~ NA_character_)) %>% pull(LangURL)
112+
113+
LocZoom <- workshops %>%
114+
select(Location) %>%
115+
mutate(LogoURL = case_when(str_detect(Location, "via") == T ~ zoomLogoURL,
116+
T ~ NA_character_)) %>% pull(LogoURL)
112117
113118
workshops %>%
114119
select(-URL) %>%
115-
kbl() %>%
120+
kbl(align = c("r", "l", "r", "r", "r"), ) %>%
116121
kable_minimal(full_width = T, font_size = 10,
117122
bootstrap_options = c("hover", "condensed")) %>%
118-
column_spec(3, image = spec_image(LangFlags, 50, 50))
123+
column_spec(1, width = "5em") %>%
124+
column_spec(3, width = "5em",
125+
image = spec_image(LangFlags, 50, 50)) %>%
126+
column_spec(4, width = "20em",
127+
image = spec_image(LocZoom, 100, 20)) %>%
128+
column_spec(5, width = "5em")
119129
```

0 commit comments

Comments
 (0)