Schedule

Please install R in advance by following instructions for Installing R on Your own Machine.

Monday, the 15th of April (first day)

09.30 - Welcome (Dale Barr and Team HYDB)
09.45 - Thinking like a Computer (Carolyn Saund)
10.30 - Introduction to Tidy Data (Shannon McNee)
11.30 - R Markdown (Rebecca Lai)
14.00 - Quantitative Data Visualisation (Jack Taylor)
15.15 - Qualitative Data Visualisation (Stephanie Allan)

Tuesday, the 16th of April (second day)

09.45 - Shiny App Live Coding (Lisa DeBruine)
11.30 - Visualising the Headlines (Shannon McNee)
14.00 - Scraping and Visualising Twitter data (Anna Henschel)
15.45 - R Markdown Websites (Rebecca Lai)

Wednesday, the 17th of April (third day)

09.45 - Your Data and Visualisations (Lovisa Sundin)
11.15 - Wrap up (Team HYDB)

Introduction

Coding is a skill that can be picked up by people from all backgrounds, for any kind of data. Everyone can be a data scientist! Coding skills provide tools to enhance communicating your data and ideas to a wide range of audiences and disciplines. If you’ve ever wanted to learn how to make your own website or to visualise your data in a way that is engaging and rigorous, coding is for you. In addition, showcasing your findings in new ways may help you look at your data from a different perspective and lead to a deeper understanding of data.

With the open science movement, more and more qualitative and quantitative data will become freely accessible - learning data science and visualization skills will empower you to take advantage of that! We’ll show you how R is incredibly useful (and cutting-edge) in the arts and humanities, for example allowing you to quickly gather publicly available data (like popularity of different baby names in the UK) in R, create beautiful word clouds from large numbers of twitter posts, and visualise qualitative relationships between concepts in dendrograms! Coding can be playful, fun and beautiful – did you know that there is even the possibility to create artworks, animations, and interactive 3D graphs in R? Once you have tried coding yourself, you might never want to go back to dreary Excel graphs!

This workshop is sponsored by the Scottish Graduate School of Social Science.

library(tidyverse)

map_data("world") %>%
  mutate(startsA = substring(region, 1, 1) == "A") %>%
  ggplot(aes(x=long, y=lat, group=group, fill=startsA)) + 
  geom_polygon(show.legend=FALSE) +
  labs(title = "Countries starting with the letter A",
       caption = "A plot made with the 9 lines of code above.",
       x = "Longitude", y = "Latitude") +
  scale_fill_manual(values = c("grey", "dodgerblue"))

Aims, objectives and learning outcomes

About the Workshop

Format

This event will be an opportunity for people who are brand new to coding (or want to learn more) to learn how the open source (and free to download) coding platform R is useful in research communication.

Each day there will be brief input from researchers from different disciplines demonstrating how they use R to make powerful, accessible data visualizations. But the workshop will predominantly focus on hands-on experience of working with data directly related to concrete, topical real life examples.

Day one will be spent covering the basics - how to get up and started. Day two will demonstrate the powerful practical applications of R data visualisation in communicating complex ideas and provide participants with the opportunity to develop these skills in the context of their own data and research. Day three will focus on community building and sharing good practice activities.

Prior learning required by participants

No prior experience of coding or any other software is needed. The event has been designed with absolute beginners in mind.

Learning materials

All materials utilised over 2.5 days will be provided through open source webpages (https://psyteachr.github.io/hack-your-data/) to support continued learning. This will include series of podcasts discussing personal experiences of beginning coding journey with R (highs, lows, challenges, advice) developed by the PGR workshop leads and the participants together.