Publications by Janine Medina

Lab Section 2 Assignment

28.01.2023

#Libraries library(haven) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union library (ggplot2) library(psych) ## ## Attaching package: 'psych' ## The following obje...

18897 sym R (1296493 sym/260 pcs) 44 img

BootCamp Session3 Incomplete Doc

19.09.2022

What is statistics? - The field of statistics: the practice and study of collecting and analyzing data. - A summary statistic: a fact about or summary of some data Types of Statistics - Descriptive statistics: describe and summarize data - Inferential statistics: Use a sample of data to make inferences about a larger population Types of Data - Nu...

4811 sym R (8617 sym/36 pcs) 1 img

FY 22-23 StatsBootCamps

19.09.2022

What is statistics? - The field of statistics: the practice and study of collecting and analyzing data. - A summary statistic: a fact about or summary of some data Types of Statistics - Descriptive statistics: describe and summarize data - Inferential statistics: Use a sample of data to make inferences about a larger population Types of Data ...

5377 sym R (8696 sym/36 pcs) 1 img

Cleaning and visually data

01.10.2022

Importing Data Setting WD Before we import, it may be worth it to set our “Working Directory.” This basically tells R where to look for things and where to save things. We can be specific when we import or save, but this will make it faster and help code run if you are using code to import. Sometimes, Rmd files give you a hard time with sett...

24772 sym R (2807 sym/14 pcs)

PSY 211 Problem Set Assignment

06.10.2022

#’ — #’ author: “Chelsea McElwee” #’ title: “Probelm Set 1 Assignment” #’ Due: “10/7/2022” #’ — #installing readxl package because i will be using an excel file and #then i have to bring up the library for the package i installed install.packages(“readxl”) library(readxl) #Reading and importing data from XL read_exce...

2677 sym

PSYC211_Problem Set 1_AP

07.10.2022

#Began by setting working directory, creating a chunk, and reading in data. read.csv("master_QuadMax10_n250.csv") ## SUBJECTS AGE GENDER SEX LOE HITS_PAIR HITS_TRIP HITS_QUAD ## 1 A3LKPH6ISMWLJR 18.89041 M 1 12 0.8 0.6 0.4 ## 2 A1BZLPYW3YGUWZ 19.31233 F 0 13 0.6 1.0 1.0 ## 3...

62 sym R (66160 sym/56 pcs) 3 img

Week 3 Lab

07.10.2022

Making Scales Sometimes, we collect data that we need to make into scales, such as multiple questions that get at the same construct. When this happens, we want to combine the data in some way, maybe through summation or maybe through averaging. We’ll go over both here. Importing Data But first, let’s bring in our data. We’re working with ...

5817 sym R (6361 sym/34 pcs) 4 img

Problem Set 1 v2

15.10.2022

#’ — #’ author: “Chelsea McElwee” #’ title: “Probelm Set 1 Assignment” #’ Due: “10/7/2022” #’ — #installing readxl package because i will be using an excel file and #then i have to bring up the library for the package i installed #install.packages("readxl") library(readxl) #Reading and importing data from XL read_exce...

1569 sym R (1477 sym/10 pcs)

Problem Set #1 w/ Visuals

15.10.2022

#installing readxl package because i will be using an excel file and #then i have to bring up the library for the package i installed #install.packages("knitr") library(knitr) #install.packages("readxl") library(readxl) #Reading and importing data from XL read_excel ("2014-2022 ONLY.xlsx") #set working directory #bring up libraries for packa...

726 sym R (3456 sym/28 pcs) 2 img

Problem Set 2_AP

21.10.2022

R Markdown #began by setting working directory, creating a chunk, and reading in data read.csv("master_QuadMax10_n250_V2.csv") ## SUBJECTS AGE GENDER SEX Do.you.have.concerns.about.your.memory. ## 1 A3LKPH6ISMWLJR 18.89041 M 1 Y ## 2 A1BZLPYW3YGUWZ 19.31233 F 0 ...

71 sym R (73117 sym/53 pcs) 2 img