Bug 380795 - rk.results doesn't print the factors levels
Summary: rk.results doesn't print the factors levels
Status: RESOLVED FIXED
Alias: None
Product: rkward
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: unspecified All
: NOR normal
Target Milestone: ---
Assignee: RKWard Team
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-08-30 14:58 UTC by RKWard Team
Modified: 2014-10-24 08:49 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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