[R] R to HTML problem

2015-06-08 Thread Pijush Das
Dear Jim Lemon, Thank you very much Jim for your help. Regards, Pijush [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the

Re: [R] R to HTML problem

2015-06-06 Thread Jim Lemon
Hi Pijush, Does this do what you want? #title~"Output of Class Prediction" cat("The output result is given below\n") iris.df<-cbind(iris[1:10,1:4],rep("",10),iris[1:10,1:4]) names(iris.df)<-c(names(iris)[1:4],"",names(iris)[1:4]) delim.table(iris.df,html=TRUE) Save the result as "sample.R" in the

[R] R to HTML problem

2015-06-05 Thread Pijush Das
Hi r-help, I am trying to develop a program in R where I want to display the out put result in a HTML page. But I unable to put two tables side by side which is required to me. Another problem is that I unable to put the title in the center of the page. The code is given below. Please help me.