Message-ID: <56AA44E4.3060205@ivt.baug.ethz.ch>
Date: 2016-01-28T16:42:12Z
From: Kirill Müller
Subject: [R-pkg-devel] Problems with :::
In-Reply-To: <56AA15B0.7070000@gmail.com>
On 28.01.2016 14:20, Duncan Murdoch wrote:
> If the class is just "mytable", then you'll have to change it to
> "ftable" before calling stats::format().
Side note: The following will fail, because format.ftable double-checks
the class of its argument:
format_ftable <- utils::getS3method("format", "ftable")
format_ftable(mytable)
-Kirill