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
2 answers

Good C# XMPP Library supporting Group Chat and TLS or SSL Encryption

So I have been struggling with finding a decent C# library to use with XMPP that supports either SSL or TSL encryption between the clients and the server. I am hoping that someone can recommend I library that meets some of my needs and is fairly…
pat8719
  • 1,700
  • 1
  • 26
  • 47
4
votes
1 answer

Correct reporting of margin of error on a search value sample

In Google Analytics, I am able to get a list of all the terms users search for on the site. For a large site over the course of several weeks, this could be upwards of 10,000 terms. I want to create a report that categorizes the types of terms that…
JAB
  • 115
  • 1
  • 1
  • 9
4
votes
0 answers

MTurk external Survey Link. Add Worker-ID to URL

I am trying to crate an external survey link on MTurk. The Idea is that a worker enters my page and solves a bunch of tasks until he clicks a "leave"-Button, that generates a unique token. My problem is that I need to add his worker-ID to my link.…
4
votes
1 answer

How to create one way frequency table with survey weights in R

I need to create one way frequency table. The tables have to include the proportions for variables. Using prop.table(svytable()), I can extract proportions for one variable at a…
newRuser
  • 95
  • 1
  • 7
4
votes
0 answers

Using metadata to format columns of a database in Python

I am working with a database that originally is in ‘.sav’ format of SPSS. This database has columns of information that do not optimize memory usage (i.e, strings variables have left blank spaces, also in the numeric there are decimals where there…
ramiromp
  • 53
  • 4
4
votes
1 answer

(RIM) weighting samples in R

I have some survey data. As an example, I use the credit data from the ÌSLR package. library(ISLR) The distribution of Gender in the data looks like this prop.table(table(Credit$Gender)) Male Female 0.4825 0.5175 and the distribution of…
Banjo
  • 1,191
  • 1
  • 11
  • 28
4
votes
1 answer

Oaxaca decomposition on weighted survey data in R

I'd like to implement Oaxaca Decomposition in R. It is used in e.g. labor economics to distinguish explained variance versus unexplained variance. This is fairly easy to do with unweighted data using the Oaxaca package (See previous explanation…
Bobby O
  • 79
  • 7
4
votes
0 answers

multiple questions in one mTurk HIT. creation of next button

I'm creating a task on mTurck in which I want people to rank sentences on a scale of 1 to 100 according to a simple question. The problem is that i want every Turker to rank 100 sentences per 1 HIT, since a single sentence per person (or just a…
4
votes
7 answers

best way to store survey data?

I am developing a very small survey application, likely 3-4 pages web application. so my question is what is the best way to save survey data? by the way so far I have come up with the following ways. save to database and mark each survey as…
Mohamed
  • 3,420
  • 7
  • 28
  • 31
4
votes
1 answer

How to calculate estimated standard error in R for survey data without using survey design?

I want to know how you generate estimates of standard error without using survey design for the given examples. library(survey) data(api) dstrat<-svydesign(id=~1,strata=~stype, weights=~pw, data=apistrat, fpc=~fpc) example…
Sid Sath
  • 41
  • 4
4
votes
0 answers

Does the R survey package have a function like prop.test for comparing two population proportions?

I am working with a database that involves weighted statistics and complex survey design, namely the National/Nationwide Inpatient Sample, so I am using R's 'survey' package for tasks like summary statistics, regression, etc. One test I was…
4
votes
2 answers

Stratified cluster sampling estimates from survey package

I want to estimate means and totals from a stratified sampling design in which single stage cluster sampling was used in each stratum. I believe I have the design properly specified using the svydesign() function of the survey package. But I'm not…
Jean V. Adams
  • 4,634
  • 2
  • 29
  • 46
4
votes
1 answer

Using predict with svyglm

I have found some odd behavior with predict and the svyglm object from the survey package. If your newdata in predict has a factor/character with one level it spits out error: Error in `contrasts<-`(`*tmp*`, value = contr.funs[1 + isOF[nn]]) :…
Carl
  • 5,569
  • 6
  • 39
  • 74
4
votes
1 answer

How to use the R survey package to analyze multiple response questions in a weighted sample?

I'm relatively new to R. I am wondering how to use the 'survey' package (http://r-survey.r-forge.r-project.org/survey/) to analyze a multiple response question for a weighted sample? The tricky bit is that more than one response can be ticked so the…
Chris G.
  • 81
  • 2
  • 9
4
votes
1 answer

Marginal effects of logit in weighted survey data using R

I´m trying to estimate marginal effect of a logit model in which I have several dichotomous explanatory variables. Let's say the model estimated by logit<- svyglm ( if_member ~ if_female + dummy_agegroup_2 + dummy_agegroup_3 + dummy_education_2 +…
david_sst
  • 55
  • 6