library(pryr) returns a message. Registered S3 method overwritten by 'pryr': method from print.bytes Rcpp

前端 未结 1 1159
别那么骄傲
别那么骄傲 2021-01-28 11:58

When I active a package called pryr. It returns a message

    library(pryr)

    Registered S3 method overwritten by \'pryr\':
    method      from          


        
相关标签:
1条回答
  • 2021-01-28 12:12

    It means that both Rcpp and pryr have an S3 method (a function) called print.bytes. That is, a print method for an object of the bytes class.

    Since you now loaded pryr, the function from pryr will be used, not the one from Rcpp.

    This might mean that objects of class bytes will be displayed differently after loading pryr, but since it's just a print method, this is unlikely to have serious consequences.

    0 讨论(0)
提交回复
热议问题