Skip to content
R for the Rest of Us Logo

Getting Started With R

Examine Data

Transcript

Click on the transcript to go to that point in the video. Please note that transcripts are auto generated and may contain minor inaccuracies.

View code shown in video
library(tidyverse)

coffee_ratings <- read_csv(file = "coffee_ratings.csv")

coffee_ratings

glimpse(coffee_ratings)

library(skimr)

skim(coffee_ratings)

library(pointblank)

scan_data(coffee_ratings)

Your Turn

View your data in the following ways:

  • In the console by typing coffee_ratings

  • Using the glimpse() function (make sure you run library(tidyverse) first)

  • With the Positron Data Explorer

  • With scan_data() from the {pointblank} package

Have any questions? Put them below and we will help you out!

You need to be signed-in to comment on this post. Login.