readr package import error in R 4.1.3 but not R 4.2

With the exact same code and data, I see an error using read_csv in R 4.1.3, but only a warning in R 4.2.0. Is there any idea why this is the case?

In both cases, the only user-written package loaded is "tidyverse".

Successful import with a warning in R 4.2.0

> jp_uni<- read_csv("jss_uni_edited.csv")

Rows: 429 Columns: 4                                                                                                                         
-- Column specification ----------------------------------------------------------------------------------
Delimiter: ","
chr (3): uni, en_uni, country
dbl (1): n

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

Error in 4.1.3

> jp_uni<- read_csv("jss_uni_edited.csv")

Error in app$vspace(new_style$`margin-top` %||% 0) : 
  attempt to apply non-function

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.