Questions tagged [survey]

Questionnaires created with the purpose of extracting information and deriving conclusions from a set of users. Use this tag for questions related to the creation, storage and handling of surveys. Note: Asking people to take a survey is off-topic.

Surveys generally aren't given too much attention by those who are uninterested in a certain topic, or are given unsolicited requests to answer them. Often times they are prone to intentional negligence by answerers, which can very easily skew results and should be carefully filtered out to prevent this. Nonetheless, surveys can provide powerful insights into a specific area of knowledge if implemented correctly.

Perhaps a website is interested to see if a specific set of users are satisfied with the website, namely those users with IP addresses which have only ordered their first few items. This would be very important to ensure that they can retain new customers and improve any shortcomings. They might also want to ask for suggestions from users who have used their website for an extended period of time, longer than 1 year. Creating surveys with these metrics allows for targeted information extraction, and thus the ability to draw specific conclusions from this data.

Surveys may be implemented in software using a variety of programming languages. Popup windows, modules, and follow-up emails are all viable options.

1210 questions
4
votes
1 answer

Analyse multiple choice questions with multiple choice answers based on categories

I have a dataframe that looks like this Country <- rep(c("Austria", "Austria","Belgium", "Belgium", "Spain", "Slovenia", "France"), times=3) Institute <- rep(c("Inst 1","Inst 2","Inst 3","Inst 4","Inst 5","Inst 6","Inst 7"), times=3) Ans …
msh855
  • 1,493
  • 1
  • 15
  • 36
4
votes
2 answers

Nonlinear regression with sampling weights (package survey)

I would like to estimate the coefficients of a nonlinear model with a binary dependent variable. The nonlinearity arises because two regressors, A and B, depend on a subset of the dataset and on the two parameters lambda1 and lambda2 respectively: y…
Ale
  • 917
  • 9
  • 28
4
votes
1 answer

R survey weights standard-error

I have some problems calculating SE in my survey. Here is an exemple of what I want to do and I have tried to use the survey package in R. (fpc in the example below equals number of observations in each strata) Code to generate data: id = c(1, 2,…
CaptHaddock
  • 130
  • 1
  • 10
4
votes
4 answers

What is a good free online poll/survey app?

I need to conduct a survey of 3 questions: The first question will be Yes/No. The second will have multiple answers, in which you can select multiple answers for just that question, as well as an "other" box that you can use to fill in an…
Brad
  • 12,054
  • 44
  • 118
  • 187
4
votes
1 answer

is it possible to get the R survey package's `svyby` function multicore= parameter working on windows?

being able to multithread on windows would be awesome, but perhaps this problem is harder than i had thought.. :( inside of survey:::svyby.default there is a a block that's either lapply or mclapply depending on multicore=TRUE and your operating…
Anthony Damico
  • 5,779
  • 7
  • 46
  • 77
4
votes
3 answers

Large custom survey / reporting applications - best practice

The situation When you study social sciences, you are frequently confronted with the need for online surveys (scientific data collection online). That's one of the main reasons why I started with PHP in the first place. Recently these survey…
markus
  • 40,136
  • 23
  • 97
  • 142
4
votes
1 answer

Combining lapply, svyby, svyratio to calculate many ratios with confidence intervals

I am using the survey package in R to work with the U.S. Census' PUMS dataset for population. I've created a Boolean for each broad industry and a character variable MigrationStatus with three values (Stayed,Left,Entered). I'd like to examine the…
davideps
  • 541
  • 3
  • 13
4
votes
2 answers

How track responses for an SMS to multiple recipients with the Twilio API?

I would like to send a text message survey (eg. "How happy were you with X service? Reply 1 for satisified, Reply 2 for not satisfied") to multiple recipients. From the responses, I would like to create a report on the recipients that responded 1 vs…
Chirag Patel
  • 5,819
  • 8
  • 35
  • 38
4
votes
2 answers

Box-Cox transformation with survey data in R

Does anyone know of a way to estimate Box-Cox multivariate transformations with survey data in R? I'm not aware of anything that takes into account strata and clusters (the data that I'm working with), but even something that takes into account…
Mercelo
  • 231
  • 1
  • 5
  • 14
4
votes
1 answer

In Google Docs Forms, how to change the multiple choice answer "other" to something else?

I am trying to create a survey in Google forms and would like to create a multiple choice question with one of the answers being "Not acceptable (please comment)". I would like to allow the person to add some text after selecting this multiple…
fvuong
  • 167
  • 1
  • 3
  • 13
4
votes
1 answer

Survey Weighted Regression Without FPC in R

I'm using the svydesign package in R to run survey weighted logit regressions as follows: sdobj <- svydesign(id = ~0, weights = ~chweight, strata = ~strata, data = svdat) model1 <- svyglm(formula=formula1,design=sdobj,family =…
mike
  • 22,931
  • 31
  • 77
  • 100
3
votes
3 answers

Survey form builder using Jquery PHP?

I'm trying to create a Survey builder wizard that would be embedded in the website. Users will be able to create their own surveys by dragging and dropping appropriate form elements such as checkboxes, radiobuttons etc Once the user creates his…
Shankar ARUL
  • 12,642
  • 11
  • 68
  • 69
3
votes
1 answer

Is there a way to paste 2 "ftable" object?

I`m using svyby from survey to make some weighted ratios with their standard deviation and coefficient of variation, I use the code below to generate a three way table which provide me the ratio of subocup compared to ocup for male teleworker…
esteban
  • 102
  • 8
3
votes
0 answers

R: Passing a list of model objects to broom::glance with purrr produces unexpected errors

I am trying to extract information using broom::glance() from survey models. While I can extract coefficients and other model results from each object using broom:tidy(), I sometimes receive an error that the object I am passing does not exist when…
socialscientist
  • 3,759
  • 5
  • 23
  • 58
3
votes
0 answers

Error: $ operator is invalid for atomic vectors when using srvyr and tbl_svysummary in gtsummary

I have been trying to use tbl_svysummary() to create a summary table in gtsummary for survey data using weights. I am using the srvyr package to create the tbl_svy object using as_survey_design(). Colleagues have had no issues with this formula and…
Chris M.
  • 31
  • 2