-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathfor-students.Rmd
More file actions
70 lines (49 loc) · 2.64 KB
/
for-students.Rmd
File metadata and controls
70 lines (49 loc) · 2.64 KB
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
---
title: "For Students"
output:
html_document:
toc: true
toc_float:
collapsed: false
---
## Office/Help Hours <i class="fa fa-clock-o"></i>
My office is in 237 Walker Hall. Click [here](https://calendar.app.google/5CBxwnxz92QkaNnJ6) to schedule an appointment.
```{r, echo = FALSE}
# df <- data.frame(Time = c("6:00-9:00", "10:00-10:50", "11:00-11:50", "12:00-12:45", "12:45-1:45", "2:00-3:15"),
# Monday = c("PT", "Research", "Research", "Lunch", "Office", "Prep"),
# Tuesday = c("PT", "STT 3850", "STT 3850", "Lunch", "Office", "STT 3851"),
# Wednesday = c("PT", "STT 3850", "STT 3850", "Lunch", "Office", "Prep"),
# Thursday = c("PT", "STT 3850", "STT 3850", "Lunch", "Office", "STT 3851"),
# Friday = c("PT", "STT 3850", "STT 3850", "Lunch", "Office", "Prep"))
# knitr::kable(df, align = c("c","c","c","c","c","c"))
```
<center>
<figure>
<figcaption> Walker Hall </figcaption>
<img src="./images/walkerhall.jpg" caption="Walker Hall" width = 260>
</figure>
</center>
```{r include = FALSE}
library(leaflet)
library(dplyr)
```
Use the leaflet map below to find Walker Hall.
```{r, echo = FALSE}
leaflet() %>%
setView(lng=-81.684954, lat=36.216777, zoom = 16) %>%
addTiles() %>%
addMarkers(lng=-81.684954, lat=36.216777, popup="Walker Hall")
```
## Important Dates and Times
- [Academic calendar](https://registrar.appstate.edu/calendars-schedules) <i class="fa fa-calendar"></i>
- [University Exam schedule](https://registrar.appstate.edu/calendars-schedules/exam-schedule-0)
- [Registration Access Times](https://registrar.appstate.edu/students/registration-classes/early-registration-access)
## Writing Resources
Please visit [The University Writing Center](https://writingcenter.appstate.edu/) for resources to help you with your papers and other writing pursuits.
## Disability Services and Test Proctoring
"Appalachian State University is committed to making reasonable accommodations for individuals with documented qualifying disabilities in accordance with the Americans with Disabilities Act of 1990, and Section 504 of the Rehabilitation Act of 1973. If you have a disability and may need reasonable accommodations in order to have equal access to the University's courses, programs and activities, please contact the Office of Disability Services (828-262-3056 or <https://ods.appstate.edu>). Once registration is complete, individuals will meet with ODS staff to discuss eligibility and appropriate accommodations."
## Courses I Teach
* Click the [Teaching Tab](teaching.html)
## Computing Resources
* Click the [Resources Tab](resources.html)
* * *