flowchart LR
A{Idea/Question} -->|Develop|B{Plan}
B -->|Create measures|C{Collect Info}
C -->|Gather collected|D{Analyze Info}
D -->|Visualize|E{Share findings}
E -->|Evaluate|A
Work session: Replication with R, R Markdown, & Quarto
Work session: Reproducible workflows with R, R Markdown, & Quarto
flowchart LR
A{Idea/Question} -->|Develop|B{Plan}
B -->|Create measures|C{Collect Info}
C -->|Gather collected|D{Analyze Info}
D -->|Visualize|E{Share findings}
E -->|Evaluate|A
Graph made using Mermaid.js
Important
Q: Why Google Form?
A: Easier than Qualtrics to generate, extract information from.
Also, more broadly available (Google Forms is free to people with a Google account).
Important
Q: Why not MS Word or Google Doc?
Q: Why not MS Excel or MS PowerPoint?
---
title: "Survey 01"
params:
update_data: FALSE
---
## Purpose
This page documents the data processing steps involved with Survey-01 in PSYCH 490.009 Fall 2023.
The survey questions were adapted from those discussed in [@Krumrei-Mancuso2016-qm; @Nadelson2014-ym; @Plohl2023-yf].
## Survey
Direct link: <https://forms.gle/Szk1pLEu4ZLWtFjX7>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLScp2GG_2TZ3_T6Yl1okn-sHJF93n9RZu_EmLWQtHP0rJcGM3w/viewform?embedded=true" width="640" height="6003" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
## Preparation
First, we load the external packages (groups of R commands) that we will be using.
```{r}
library('tidyverse')
library('ggplot2')
library('dplyr')
library('tidyr')
library('stringr')
library('lubridate')
library('GGally')
```
Replication in cancer biology
PSYCH 490.009: 2023-09-15 Friday