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
93
votes
8 answers

Narrowing conversions in C++0x. Is it just me, or does this sound like a breaking change?

C++0x is going to make the following code and similar code ill-formed, because it requires a so-called narrowing conversion of a double to a int. int a[] = { 1.0 }; I'm wondering whether this kind of initialization is used much in real world code.…
Johannes Schaub - litb
  • 496,577
  • 130
  • 894
  • 1,212
53
votes
2 answers

General-purpose databases that never delete or update data in-place

I'm very much inspired by the approach to data management advocated by Rich Hickey, and implemented in Datomic, where the data is never mutated in-place, all the versions are always preserved and query-able, and the time is a first-class concept. Of…
Ivan Krechetov
  • 18,802
  • 8
  • 49
  • 60
38
votes
2 answers

Are there any popularity / usage statistics available for the Free RCS/SCM/VCS systems?

Are there any surveys anywhere which report on number of projects and/or people using the assorted Free version control systems? Also interesting is if a similar survey was one over time, to see how things have changed. Obviously, it's hard to…
Peter Boughton
  • 110,170
  • 32
  • 120
  • 176
24
votes
6 answers

asp.net survey questionnaire engine

I am looking to implement (or build as a last resort) a type of survey engine that allows for extensibility and integration into an existing workflow engine. The survey/questionnaire engine should allow for admin users to add new questions and…
Thiago Silva
  • 14,183
  • 3
  • 36
  • 46
22
votes
23 answers

What is software development at your company really like (methodologies, tools, ...)?

Since I've started my first job as a professional software developer about two years ago, I've read many articles about commonly accepted methodologies (e.g. Scrum, XP), technologies (e.g. EJB, Spring), techniques (e.g. TDD, code reviews), tools…
cretzel
  • 19,864
  • 19
  • 58
  • 71
19
votes
6 answers

How do I handle multiple kinds of missingness in R?

Many surveys have codes for different kinds of missingness. For instance, a codebook might indicate: 0-99 Data -1 Question not asked -5 Do not know -7 Refused to respond -9 Module not asked Stata has a beautiful facility for handling these…
Ari B. Friedman
  • 71,271
  • 35
  • 175
  • 235
16
votes
19 answers

Eclipse as an IDE - What do you find missing as a beginner in Java?

I am working on a solution that aims at solving problems that newbie programmers experience when they are "modifying code" while bug fixing / doing change requests, on code in production. Eclipse, as we all know is a great IDE. Features such as Code…
Jay
  • 2,394
  • 11
  • 54
  • 98
16
votes
2 answers

confidence intervals of svyby proportion

Is there an existing function that creates confidence intervals from a svyby object for proportions (in my case a crosstab for a binary item in the survey package). I often compare proportions across groups, and it would be very handy to have a…
maycobra
  • 417
  • 7
  • 15
13
votes
1 answer

Looking for the best Asp.net survey application

Please give suggestions for best Asp.Net survey application with source code - commercial is fine..
Ansar Muhammad
  • 1,238
  • 5
  • 25
  • 45
13
votes
2 answers

Why is an R object so much larger than the same data in Stata/SPSS?

I have survey data in SPSS and Stata which is ~730 MB in size. Each of these programs also occupy approximately the amount of space you would expect(~800MB) in the memory if I'm working with that data. I've been trying to pick up R, and so…
bldysabba
  • 131
  • 4
12
votes
4 answers

How to make a customizable user survey in Django

I am making a system for a company which among other things must hold information about the satisfactory level about various things, I have made it work fine using a fixed model with fixed questions and answers, but I am sure that they will need to…
John Magistr
  • 872
  • 3
  • 9
  • 22
11
votes
6 answers

.NET/Mono Install Base

Me and some friends are considering writing a new FOSS project, and the debate is divided between using .NET or something else. So I am wondering if there is an advertised install base for Mono on Linux machines? and, if there known install base of…
Amirshk
  • 8,170
  • 2
  • 35
  • 64
11
votes
2 answers

Pass formula to function in R?

Any help with this would be really appreciated. I am using the Lumley survey package and am trying to simplify my code, but have hit a slight snag. The svymean function from the package is called as follows in my code, where the first argument is a…
RickyB
  • 607
  • 1
  • 8
  • 20
10
votes
6 answers

Is it impractical to put an HTML form into an email?

I've had several clients ask this, and I've never been able to get or give a satisfactory answer. Can you (practically) put a working form into an HTML email? My understanding is that you can, but that there's no guarantee of email clients properly…
Phantom Watson
  • 2,667
  • 4
  • 25
  • 39
10
votes
3 answers

Pearson correlation coefficient in R's survey package

Sorry if this is really obvious, but I can't see how to do a simple Pearson correlation between two variables in the survey package. My data has strata so it would be the equivalent to finding r for api00 and api99 in apistrat.…
CWD
  • 113
  • 1
  • 7
1
2 3
80 81