Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upError in apply_guides on diffPrint(df, df, extra = list(row.names = FALSE)) #111
Comments
|
Thanks for the nice MRE. I can confirm the problem. Recent r-devel changes are causing test failures so I probably will fix this as I fix the failing tests. In the meantime you can use:
although it degrades the usability a little bit. One other option is to provide your own |
Trying to compare two data.frame:s using
print(..., row.names = FALSE)gives an error in some cases (not always - I think it might be related to factors but not sure). Here is a minimal example. With:this works:
but trying to apply
extra = list(row.names = FALSE)fails:This is with:
PS. Thanks for a brilliant package!