The final activity for each learning lab provides space to work with data and to reflect on how the concepts and techniques introduced in each lab might apply to your own research.
To earn a badge for each lab, you are required to respond to a set of prompts for two parts:
In Part I, you will reflect on your understanding of key concepts and begin to think about potential next steps for your own study.
In Part II, you will create a simple data product in R that demonstrates your ability to apply a data analysis technique introduced in this learning lab.
Use the institutional library (e.g. NCSU Library), Google Scholar or search engine to locate a research article, presentation, or resource that applies learning analytics analysis to an educational context or topic of interest. More specifically, locate a study that makes use of one of the data structures we learned today. You are also welcome to select one of your research papers.
Provide an APA citation for your selected study.
What types of data are associated with LA ?
What type of data structures are analyzed in the educational context?
How might this article be used to better understand a dataset or educational context of personal or professional interest to you?
Finally, how do these processes compare with what teachers and educational organizations already do to support and assess student learning?
Draft a research question of guided by techniques and data sources that you are potentially interested in exploring in more depth.
What data source(s) should be analyzed or discussed?
What is the purpose of your article?
Explain the analytical level at which these data would need to be collected and analyzed.
How, if at all, will your article touch upon the application(s) of LA to “understand and improve learning and the contexts in which learning occurs?”
After you finish the script file for lab1_badge add the code fo reach problem into the correct code chunks below. # Making sure not to change the code chunk name.
# YOUR FINAL CODE HERE
Students <- c("Thor", "Rogue", "Electra", "Electra", "Wolverine")
Foods <- c("Bread", "Orange", "Chocolate", "Carrots", "Milk")
df <- data.frame(Students, Foods)
# YOUR FINAL CODE HERE
table(df)
## Foods
## Students Bread Carrots Chocolate Milk Orange
## Electra 0 1 1 0 0
## Rogue 0 0 0 0 1
## Thor 1 0 0 0 0
## Wolverine 0 0 0 1 0
# YOUR FINAL CODE HERE
c(1,2,3,4,5)
## [1] 1 2 3 4 5
# YOUR FINAL CODE HERE
vec <- c(1,2,3,4,5)
sum (vec)
## [1] 15
# YOUR FINAL CODE HERE
library(tidyverse)
## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ──
## ✔ ggplot2 3.3.6 ✔ purrr 0.3.4
## ✔ tibble 3.1.7 ✔ dplyr 1.0.9
## ✔ tidyr 1.2.0 ✔ stringr 1.4.0
## ✔ readr 2.1.2 ✔ forcats 0.5.1
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
Congratulations, you’ve completed your Data Sources Badge!
Complete the following steps to submit your work for review by:
Change the name of the author: in the YAML header at the very top of this document to your name. As noted in Reproducible Research in R, The YAML header controls the style and feel for knitted document but doesn’t actually display in the final output.
Click the yarn icon above to “knit” your data product to a HTML file that will be saved in your R Project folder.
Commit your changes in GitHub Desktop and push them to your online GitHub repository.
Publish your HTML page the web using one of the following publishing methods: Publish on RPubs by clicking the “Publish” button located in the Viewer Pane when you knit your document. Note, you will need to quickly create a RPubs account. Publishing on GitHub using either GitHub Pages or the HTML previewer.
Post a new discussion on GitHub to our Foundations
Badges forum. In your post, include a link to your published web
page and write a short reflection highlighting one thing
you learned from this lab and one thing you’d like to explore
further.