survey

What is the best Drupal Survey module [closed]

徘徊边缘 提交于 2019-12-04 05:25:50
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . We're after a replacement for a DotNetNuke installation with a DynamicForms module by DataSprings. Currently the problems are mainly performance related, but the fact that DynamicForms uses Postbacks on ASP.Net all the time renders it also highly susceptible to slow server response time. We're after a Drupal module which would allow us to present the CMS user with a control panel where they could: -

How to clean and re-code check-all-that-apply responses in R survey data?

送分小仙女□ 提交于 2019-12-04 01:52:53
问题 I've got survey data with some multiple-response questions like this: HS18 Why is it difficult to get medical care in South Africa? (Select all that apply) 1 Too expensive 2 No transportation to the hospital/clinic 3 Hospital/clinic is too far away 4 Hospital/clinic staff do not speak my language 5 Hospital/clinic staff do not like foreigners 6 Wait time too long 7 Cannot take time off of work 8 None of these. I have no problem accessing medical care where multiple responses were entered with

How to persist branching logic into database?

瘦欲@ 提交于 2019-12-03 13:26:34
We are building a survey engine for our internal use. I would like to know how to persist the question branching logic into the database? Any body done this before or any ideas on the schema for the database? If the user responses with an answer, we need to skip to the next questions based on the logic added to the questions Each question can have multiple logic added to it. For eg: Question: Is it Sunny, Raining or Cloudy? Answer: Raining. The next question should be based on the previous answer. if(Raining) { } if(Sunny) { } if(Cloudy) { } how do I persist the above to the database and go

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

只谈情不闲聊 提交于 2019-12-03 09:19:53
Closed. This question is off-topic. It is not currently accepting answers. Learn more . Want to improve this question? Update the question so it's on-topic for Stack Overflow. 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 well supported/documented. Also perhaps someone can confirm my suspicions about some of the libraries I've already tried. My first attempt used Soapbox Studio SDK. Found here

What programming languages and language features are under 10? [closed]

江枫思渺然 提交于 2019-12-03 03:56:31
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . It seems there are many 'new' languages around but in reality it seems like most of the popular, non experimental, ones are already in

Survey Data Model

邮差的信 提交于 2019-12-03 03:48:23
I'm developing a simple survey module for an ASP application I'm working on and I'd like to get some suggestions on the data model. Questions can be one of three types - multiple choice, multiple answer; multiple choice, single answer, and free response. I'm thinking of the following tables: Question - with a question type discriminator ifeld PossibleAnswers- with a questionID and answer text field SurveyQuestionResponse- with a questionID, a clientID, and answer text Am I making this too simple? mjv Take a look at the Data Model library at databaseanswers.org Models #76 thru #81 seem

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

别说谁变了你拦得住时间么 提交于 2019-12-03 00:59:09
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 measure this sort of thing completely accurately, but it should still be possible to get reasonable estimates. Since tags are annoyingly limited to five items, and I didn't want a bias towards/against any of the systems, for search purposes I'll add the following: bazaar bzr cvs git hg mercurial rcs scm svn subversion vcs scm vcs popularity survey

Compute quantiles incorporating Sample Design (Survey package)

本小妞迷上赌 提交于 2019-12-01 13:49:47
I want to compute a new column using the quantiles of another column (a continuous variable) incorporating the Sample Design of a complex survey. The idea is to create in the the data frame a new variable that indicates which quantile group each observation falls into Here is how I execute the idea without incorporating the sample design, so you can understand what I'm aiming for. # Load Data data(api) # Convert data to data.table format (mostly to increase speed of the process) apiclus1 <- as.data.table(apiclus1) # Create deciles variable apiclus1[, decile:=cut(api00, breaks=quantile(api00,

Open source survey/questionnaire engine for Java [closed]

风流意气都作罢 提交于 2019-11-30 13:36:54
Is there an open source survey engine for java that will allow branching of questions? i.e. Question 1 has the options of A, B, or C and they each take you to a different set of follow-up questions. I've found a couple (JSurveyLib and Socrates QE), but those seem to be very tied to a GUI. The application that I'm writing has a java back-end running on glassfish, and a flex front-end. Eventually there are plans for different font-ends, so the engine needs to be very independent of the GUI. Please have a look at JCaiF - "The Java Computer Aided Interviewing Framework (JCaiF) is a collection of

How do I handle multiple kinds of missingness in R?

风流意气都作罢 提交于 2019-11-29 21:48:08
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 multiple kinds of missingness, in that it allows you to assign a generic . to missing data, but more specific kinds of missingness (.a, .b, .c, ..., .z) are allowed as well. All the commands which look at missingness report answers for all the missing entries however specified, but you can sort out the various kinds of missingness later on as well. This is