Bug 380795

Summary: rk.results doesn't print the factors levels
Product: [Applications] rkward Reporter: RKWard Team <rkward-devel>
Component: generalAssignee: RKWard Team <rkward-devel>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: unspecified   
OS: All   
Latest Commit: Version Fixed In:

Description RKWard Team 2013-08-30 14:58:02 UTC
-- Originally posted by (AT sourceforge.net): asalber --

-- This ticket was imported from http://sourceforge.net/p/rkward/bugs/131 on 2017-05-30 15:27:01 +0100 --
When I print a data.frame with rk.results it doesn't print the levles of factors. Looking inside the rk.results code, I see that the problem is with the cat function, To solve the problem, I propose to change the lines that contains
cat("<td>", x[row, col], "</td>", sep = "")
with
cat(paste("<td>", x[row, col], "</td>", sep = ""))-- Labels: rk.results --
Comment 1 Thomas Friedrichsmeier 2014-09-29 16:44:01 UTC
- **status**: open --> open-fixed
- **Group**: CRASH --> FIXED IN SVN
Comment 2 Thomas Friedrichsmeier 2014-09-29 16:44:01 UTC
Thanks for spotting the problem, and reporting. Sorry for the long delay.

Now fixed in SVN, using format(), instead of paste() (This respects options("digits"), among others.)
Comment 3 Thomas Friedrichsmeier 2014-10-24 08:49:17 UTC
- **status**: open-fixed --> closed-fixed