Skip to content
Coming soon: Ally. Your guide to the world of AI and R. Learn More →
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.

Corbin Campbell

Corbin Campbell • March 18, 2026

When I ran Data Scan, I received an error in "ggplot2..." "problem while computing stat" "error occurred in the 3rd layer" "argument must be coercible to non-negative integer"

Gracielle Higino

Gracielle Higino Coach • March 18, 2026

Hi Corbin! Can you share the exact code you used and the version of the pointblank package you're using?