Skip to content
Back to formatted view

Raw Message

Message-ID: <4B0AAAB6.8030809@biostat.ku.dk>
Date: 2009-11-23T15:31:02Z
From: Peter Dalgaard
Subject: Re adline()
In-Reply-To: <26476979.post@talk.nabble.com>

yonosoyelmejor wrote:
> Hello, I would like to ask you a question.I have a program in R and I use the
> readline method to ask the user some things,but i don?t use the R console
> but I use Win console then not appear what I put.I put the code as you look
> for:
> 
> cat("1- 24horas\n")
> cat("2- 12horas\n")
> cat("3- 8horas\n")
> selection<-readline(prompt="\nSelecciona numero de horas:")
> 
> if(selection=="1"){
> prediccion=exp(x.reconstruida[1441:1450])
> }
> if(selection=="2"){
> prediccion=exp(x.reconstruida[720:729])
> }
> if(selection=="3"){
> prediccion=exp(x.reconstruida[481:491])
> }
> 
> write.table(prediccion,"C:\\Temp\\prePrueba.txt",quote=F,row.names=F,append=T,col.names=F)
> 
> 
> //end of code.
> 
> Excuse me but my English is bad, i hope explained me well,
> 
> A greeting,
> Ignacio.
> 
> 

I think this is a matter of flushing the console before the readline
call. See ?flush.console

-pd

-- 
   O__  ---- Peter Dalgaard             ?ster Farimagsgade 5, Entr.B
  c/ /'_ --- Dept. of Biostatistics     PO Box 2099, 1014 Cph. K
 (*) \(*) -- University of Copenhagen   Denmark      Ph:  (+45) 35327918
~~~~~~~~~~ - (p.dalgaard at biostat.ku.dk)              FAX: (+45) 35327907