If I extract a row from a dataframe, my custom s3 class stays:
test_df = iris
class(test_df) <- c("test_class", class(test_df))
class(test_df[1,])
[1] "test_class" "data.frame"
But this does not work for tibbles:
test_df <- as_tibble(test_df)
class(test_df) <- c("test_class", class(test_df))
class(test_df[1,])
[1] "tbl_df" "tbl" "data.frame"
Is there a way around this? Thanks
The answer comes from the s3 section of Hadley's Advanced R book. You have to define a class constructor function and a new
[
function.