Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Output to console for read_csv has changed #54

Open
jcwomack opened this issue Feb 8, 2022 · 0 comments
Open

Output to console for read_csv has changed #54

jcwomack opened this issue Feb 8, 2022 · 0 comments

Comments

@jcwomack
Copy link
Contributor

jcwomack commented Feb 8, 2022

For tidyverse 1.3.1, the output of read_csv to the console when reading cats.csv appears to be different to the output in the course materials.

> cats <- read_csv("https://chryswoods.com/intermediate_r/data/cats.csv")
Rows: 144 Columns: 3                                              
 0s── Column specification ────────────────────────────────────────────
Delimiter: ","
chr (1): Sex
dbl (2): BodyWeight, HeartWeight

ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.

The console output in the course materials can be retrieved by running spec(cats):

cols(
  Sex = col_character(),
  BodyWeight = col_double(),
  HeartWeight = col_double()
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant