This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> | |
<link href="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/themes/smoothness/jquery-ui.css" rel="stylesheet" /> | |
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
predict.lm <- function(mod, predict.df, rob, cluster = NULL){ | |
##Written by Joshua Gubler ~ http://scholar.byu.edu/jgubler | |
##Last updated on 26 June 2014 | |
##Updated by Baobao Zhang | |
##This provides an option for robust (including cluster robust) or non-robust standard errors | |
##Note: when estimating a polynomial, you must create the quadratic/cubic as a separate variable first!! This is also the best procedure when estimating logged effects. However, when estimating interaction effects, there is no need to create a separate interaction term. | |
##Also note, that for this function to work well, you must input factor variables with more than two levels individually (as indiviual dummies). | |
if(missing(predict.df)){ predict1.df <- mod$model } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Qualtrics.SurveyEngine.addOnload(function() | |
{ | |
/*Place Your Javascript Below This Line*/ | |
var inputs = $(this.getQuestionContainer()).select('input[type="text"]'); | |
for (var i = 0; i < inputs.length; i++) { | |
var input = inputs[i]; | |
$(input).insert({before: 'In '}); | |
$(input).insert({after: ' years'}); |