Re: [R] Can we prepare a questionaire in R

2011-06-14 Thread amrita gs
Hi all So we can retrieve data from mysql database and do the data analysis in R. Is it easy to do the data analysis with the values of the form elements stored in mysql db,which are of different patterns for eg:- for radio buttons there may be values yes or no,some may have textarea

Re: [R] Can we prepare a questionaire in R

2011-06-09 Thread amrita gs
Hai everyone, 1) Is there a way to populate html form element values directly into R or is it only possible to get the values into a db or an excel file or a csv file and import it for data analysis. If possible , please anyone reply to this mail. Am a beginner in R. [[alternative

Re: [R] Can we prepare a questionaire in R

2011-06-09 Thread Graham Smith
1) Is there a way to populate html form element values directly into R or is it only possible to get the values into a db or an excel file or a csv file and import it for data analysis. I realise this isn't exactly what you are asking, but it is a possible solution. If you google or search

Re: [R] Can we prepare a questionaire in R

2011-06-09 Thread amrita gs
I will explain more clearly I have an online feedback form which has all the form elements like radiobuttons,checkboxes,textareas,textboxes etc. I have to get the values of these form elements and use it for data analysis in R. It will be huge amount of data. 1) Is it possible in R to

Re: [R] Can we prepare a questionaire in R

2011-06-09 Thread Santosh Srinivas
You question has multiple answers that you can choose from and the group has been trying to help you. My suggestion would be to write it to the database using PHP and use R to extract and analyze (and write back) the data. The integration of R with web functionality is quite nascent but the

Re: [R] Can we prepare a questionaire in R

2011-06-09 Thread Barry Rowlingson
On Thu, Jun 9, 2011 at 11:09 AM, amrita gs ammasamri...@gmail.com wrote: I will explain more clearly I have an online feedback form which has all the form elements like radiobuttons,checkboxes,textareas,textboxes etc. I have to get the values of these form elements and use it for data

[R] Can we prepare a questionaire in R

2011-06-08 Thread amrita gs
Is there a way to prepare a questionnaire in R like html forms whose data can be directly populated into R? [[alternative HTML version deleted]] __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do

Re: [R] Can we prepare a questionaire in R

2011-06-08 Thread Mike Marchywka
Date: Wed, 8 Jun 2011 12:37:33 +0530 From: ammasamri...@gmail.com To: r-help@r-project.org Subject: [R] Can we prepare a questionaire in R Is there a way to prepare a questionnaire in R like html forms whose data can be directly populated

Re: [R] Can we prepare a questionaire in R

2011-06-08 Thread amrita gs
How can we create HTML forms in R [[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

Re: [R] Can we prepare a questionaire in R

2011-06-08 Thread Matt Shotwell
As Mike had written, there are frameworks for web-development with R. RApache http://www.rapache.net is one. Also, see the R package Rook: http://cran.r-project.org/web/packages/Rook/index.html . On Wed, 2011-06-08 at 17:26 +0530, amrita gs wrote: How can we create HTML forms in R Wouldn't

Re: [R] Can we prepare a questionaire in R

2011-06-08 Thread Barry Rowlingson
On Wed, Jun 8, 2011 at 12:56 PM, amrita gs ammasamri...@gmail.com wrote: How can we create HTML forms in R HTML is Just Plain Text, so you can create them using R's text output 'cat' function. E.g. cat('form First name: input type=text name=firstname /br /Last name: input type=text