Ted,

You may also want to try the function report of the npmc package.

For example,

 

report("Have a nice day!", style="underline", char="*") 

         

gives

 

Have a nice day!

****************

 

Regards,

 

Klaus.

 

 

Message: 16

Date: Sun, 01 Jun 2008 19:43:17 +0100 (BST)

From: (Ted Harding) <[EMAIL PROTECTED]>

Subject: Re: [R] Eliminating "[...]" from print

To: Matthias Kohl <[EMAIL PROTECTED]>

Cc: [EMAIL PROTECTED]

Message-ID: <[EMAIL PROTECTED]>

Content-Type: text/plain; charset=iso-8859-1

 

Many thanks, Matthias! cat() did the job, exactly as wanted.

message() won't do, since sink() eother captures output

(type="output", the default) or captures messages

(type="message"), in which case it won't capture the ouput!

In any case, even if it captured both, I wouldn't want to

sin() all the other messages.

 

Best wishes,

Ted.

 

On 01-Jun-08 18:01:59, Matthias Kohl wrote:

> Dear Ted,

> 

> what about

> cat("####################\n")

> 

> or

> 

> message("####################")

> 

> Best,

> Matthias

> 

> (Ted Harding) wrote:

>> Hi Folks,

>> This must be easy but I've not managed to locate the solution!

>> 

>> Basically: I'm using sink() to save successively obtained

>> results, e.g. I construct a set of regression coefficients

>> etc. with names rows and columne (I want to see the names

>> in the output) as an object (say "Object"), and then I

>> emit it with

>> 

>>   print(Object)

>> 

>> So far so good. But I also want to print a little header

>> and separator prior to each such print(Object) which would

>> identify it and explain what's going on. BUT: I can't get

>> rid of the "[1]" which comes out each time I print a

>> character string. Getting rid of the quotes is easy: just

>> use "quote=FALSE". For example:

>> 

>>   print ("############################",quote=FALSE)

>> 

>> gives

>> 

>>   [1] ############################

>> 

>> But how do I get rid of that "[1]"??

>> 

>> With thanks,

>> Ted.

>> 

>> 

>> --------------------------------------------------------------------

>> E-Mail: (Ted Harding) <[EMAIL PROTECTED]>

>> Fax-to-email: +44 (0)870 094 0861

>> Date: 01-Jun-08                                       Time: 18:53:00

>> ------------------------------ XFMail ------------------------------

>> 

 

 

Klaus Langohr

Statistician, PhD

Grup de Recerca Clínica en Farmacologia Humana i Neurociències.

Programa de Recerca en Neuropsicofarmacologia

IMIM-Hospital del Mar

 

Barcelona Biomedical Research Park

Doctor Aiguader, 88 | 08003 Barcelona

Tel. +34/ 933 160 458 | Fax +34/ 933 160 467

[EMAIL PROTECTED] | www.imim.cat

 


        [[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.

Reply via email to