Re: [R] Presenting R Results in Webpages

2009-04-19 Thread robert denham
On Fri, Apr 17, 2009 at 3:36 AM, Jason Rupert wrote:

>
> I apologize in advance that this question is not specific to R, but I
> thought some R users may be using this in their work process flow.
>
> I would like to be able to have a tool (prefer "scriptable") that will take
> two images and some pre-written text and put it on an simple webpage.
>
>
If you were doing more elaborate things, or doing this often, you could
consider non-R approaches such as the Cheetah - python template engine.

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Presenting R Results in Webpages

2009-04-17 Thread David Hajage
and also R2HTML.

2009/4/17 David Hajage 

> You could perhaps use asciidoc and ascii
> package (but I'm not sure you could
> obtain exactly the layout you describe...).
>
> 2009/4/17 Jim Lemon 
>
> Jason Rupert wrote:
>>
>>> I apologize in advance that this question is not specific to R, but I
>>> thought some R users may be using this in their work process flow.
>>> I would like to be able to have a tool (prefer "scriptable") that will
>>> take two images and some pre-written text and put it on an simple webpage.
>>> That is, it would look something like the following:
>>>
>>> |-|
>>> |Title|
>>> | |
>>> |  ||  || Some basic txt  |
>>> |  | Image1 |  | Image2 | ... |
>>> |  ||  || ... |
>>> |_|
>>>
>>> R comes in because I have R scripts creating the images I would like to
>>> import.  There will be 14-18 pages of these type of slides, but the key is
>>> we will be producing these over and over.  I tried doing something like this
>>> in PowerPoint, but not impressed with the linking capability or Macros.
>>> Thanks for any feedback and again appologize that this is not exactly a
>>> specific R question.
>>>
>>>
>>>
>> Hi Jason,
>> You could do something similar with htmlize in the prettyR package, and
>> get exactly what you want with a bit of HTML editing. Get an R script that
>> will generate the two images, then the text. Then insert a few tags like
>> this:
>>
>> (All of the HTML before the first image)
>> 
>> 
>> 
>> 
>> 
>> 
>> 
>> Text that you want in the right hand cell
>> 
>> (the rest of the HTML)
>>
>>
>> Jim
>>
>>
>> __
>> R-help@r-project.org mailing list
>> https://stat.ethz.ch/mailman/listinfo/r-help
>> PLEASE do read the posting guide
>> http://www.R-project.org/posting-guide.html
>> and provide commented, minimal, self-contained, reproducible code.
>>
>
>

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Presenting R Results in Webpages

2009-04-17 Thread David Hajage
You could perhaps use asciidoc and ascii
package (but I'm not sure you could obtain
exactly the layout you describe...).

2009/4/17 Jim Lemon 

> Jason Rupert wrote:
>
>> I apologize in advance that this question is not specific to R, but I
>> thought some R users may be using this in their work process flow.
>> I would like to be able to have a tool (prefer "scriptable") that will
>> take two images and some pre-written text and put it on an simple webpage.
>> That is, it would look something like the following:
>>
>> |-|
>> |Title|
>> | |
>> |  ||  || Some basic txt  |
>> |  | Image1 |  | Image2 | ... |
>> |  ||  || ... |
>> |_|
>>
>> R comes in because I have R scripts creating the images I would like to
>> import.  There will be 14-18 pages of these type of slides, but the key is
>> we will be producing these over and over.  I tried doing something like this
>> in PowerPoint, but not impressed with the linking capability or Macros.
>> Thanks for any feedback and again appologize that this is not exactly a
>> specific R question.
>>
>>
>>
> Hi Jason,
> You could do something similar with htmlize in the prettyR package, and get
> exactly what you want with a bit of HTML editing. Get an R script that will
> generate the two images, then the text. Then insert a few tags like this:
>
> (All of the HTML before the first image)
> 
> 
> 
> 
> 
> 
> 
> Text that you want in the right hand cell
> 
> (the rest of the HTML)
>
>
> Jim
>
>
> __
> R-help@r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide
> http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Presenting R Results in Webpages

2009-04-17 Thread Jim Lemon

Jason Rupert wrote:
I apologize in advance that this question is not specific to R, but I thought some R users may be using this in their work process flow. 

I would like to be able to have a tool (prefer "scriptable") that will take two images and some pre-written text and put it on an simple webpage.  


That is, it would look something like the following:

|-|
|Title|
| |
|  ||  || Some basic txt  |
|  | Image1 |  | Image2 | ... |
|  ||  || ... |
|_|

R comes in because I have R scripts creating the images I would like to import.  There will be 14-18 pages of these type of slides, but the key is we will be producing these over and over.  I tried doing something like this in PowerPoint, but not impressed with the linking capability or Macros.  


Thanks for any feedback and again appologize that this is not exactly a 
specific R question.

  

Hi Jason,
You could do something similar with htmlize in the prettyR package, and 
get exactly what you want with a bit of HTML editing. Get an R script 
that will generate the two images, then the text. Then insert a few tags 
like this:


(All of the HTML before the first image)







Text that you want in the right hand cell

(the rest of the HTML)


Jim

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Presenting R Results in Webpages

2009-04-16 Thread Tobias Verbeke

Hi Jason,

I apologize in advance that this question is not specific to R, but I thought some R users may be using this in their work process flow. 

I would like to be able to have a tool (prefer "scriptable") that will take two images and some pre-written text and put it on an simple webpage.  


That is, it would look something like the following:

|-|
|Title|
| |
|  ||  || Some basic txt  |
|  | Image1 |  | Image2 | ... |
|  ||  || ... |
|_|

R comes in because I have R scripts creating the images I would like to import.  There will be 14-18 pages of these type of slides, but the key is we will be producing these over and over.  I tried doing something like this in PowerPoint, but not impressed with the linking capability or Macros.  


Thanks for any feedback and again appologize that this is not exactly a 
specific R question.


Would the hwriter package by Gregoire Pau provide a solution?

http://cran.r-project.org/web/packages/hwriter/index.html
http://www.ebi.ac.uk/~gpau/hwriter/

HTH,
Tobias

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] Presenting R Results in Webpages

2009-04-16 Thread Jason Rupert

I apologize in advance that this question is not specific to R, but I thought 
some R users may be using this in their work process flow. 

I would like to be able to have a tool (prefer "scriptable") that will take two 
images and some pre-written text and put it on an simple webpage.  

That is, it would look something like the following:

|-|
|Title|
| |
|  ||  || Some basic txt  |
|  | Image1 |  | Image2 | ... |
|  ||  || ... |
|_|

R comes in because I have R scripts creating the images I would like to import. 
 There will be 14-18 pages of these type of slides, but the key is we will be 
producing these over and over.  I tried doing something like this in 
PowerPoint, but not impressed with the linking capability or Macros.  

Thanks for any feedback and again appologize that this is not exactly a 
specific R question.

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.