search for: closepage

Displaying 3 results from an estimated 3 matches for "closepage".

2009 Apr 30
1
newbie HWRITER package question
Hi, I am playing with hwriter examples given in "example" page. Here's what I've done: > library (hwriter) > > p = openPage ('table.html') > hwrite (1:5, p) > hwrite (iris[1:3, 1:3], p, row.bgcolor='#ffdc98') > closePage (p) > > browseURL('table.html') What I get is not as nice as what I see via the "example" page. I looked at the html source for the example page and got a notion maybe I should stick this line between <head> and </head>: <link rel="stylesheet" t...
2009 Jun 02
1
my little r is sick
Hi, Suddenly, I find my little r is sick. Given: #! /usr/bin/env r library (hwriter) unlink ('tmp.html') p = openPage ('tmp.html') hwrite ("Hello World", p) closePage (p) browseURL ('tmp.html') It worked fine a few days ago, but now it says: r: error while loading shared libraries: libR.so: cannot open shared object file: No such file or directory The big brother (R) has no problem. Can somebody please tell me what's going on? Thank you. R...
2009 Sep 20
2
xtable + print (html)
hi, I want html code via the xtable package. I have a data.frame and tried to use the print()-function. But I only get the data.frame printed - no html arround it. what do I have to change? thanks!