-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.qmd
65 lines (46 loc) · 1.16 KB
/
index.qmd
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
---
title: "Len MacGillivray Group Website"
---
Hello everyone. This is the internal reference website for the Leonard MacGillivray Group in the [Chemistry Department](https://chem.uiowa.edu/) at the University of Iowa.
This is a demonstration of a website built with Quarto! If everyone contributes their own work - the website will be a useful resource to the group for years to come.
![](tobias-meme.jpg){fig-align="center" width="434"}
It can combine R, Python and much more!
Here is an R demo.
```{{r}}
len = "Len's Group"
len %>% str_to_lower()
```
```{r}
#| echo: false
#| warning: false
#| message: false
library(dplyr)
library(reticulate)
library(stringr)
len = "Len's Group"
len %>% str_to_lower()
```
Here is a python demo
```{{python}}
print(f"{r.len.lower()}")
```
```{python}
#| echo: false
print(f"{r.len.lower()}")
```
Here is a flow chart of what you need to do if you are new.
```{{mermaid}}
flowchart LR
A[Hard edge] --> B(Round edge)
B --> C{Decision}
C --> D[Result one]
C --> E[Result two]
```
```{mermaid}
%%| echo: false
flowchart LR
A[Hard edge] --> B(Round edge)
B --> C{Decision}
C --> D[Result one]
C --> E[Result two]
```