Testing some tags

I want to know how to import a dataset in R. Please help me!
TESTING

Hi
please try the code below for a dataset named “covid.csv” in the working directory

pacman::p_load(readr)
ds <- read_csv("covid.csv")

P.S you need to have the pacman package installed, code for its installation

install.packages("pacman")

Best regards