Examine Data
This lesson is called Examine Data, part of the Getting Started With R course. This lesson is called Examine Data, part of the Getting Started With R course.
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.
Loading transcript...
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_ratingsUsing the
glimpse()function (make sure you runlibrary(tidyverse)first)With the Positron Data Explorer
With
scan_data()from the {pointblank} package
You need to be signed-in to comment on this post. Login.