在进行MANOVA计算之后,我无法计算Wilk检验。 我使用以下脚本:
echo '
<div id="divAuthorSearch" style="padding: 3px;"><img src="https://www.jqueryscript.net/images/jQuery-Ajax-Loading-Overlay-with-Loading-Text-Spinner-Plugin.jpg"/></div>
<script>
$("#divAuthorSearch").hide();
$("#divAuthorSearch").show();
</script>
<style>
.ui-autocomplete {
max-height: 200px;
overflow-y: auto;
/* prevent horizontal scrollbar */
overflow-x: hidden;
/* add padding to account for vertical scrollbar */
padding-right: 20px;
}
</style>
<script>
$("#authorname").autocomplete({
minLength: 3,
source: function(request, response){
$("#divAuthorSearch").show();
$.ajax({
"url" :"/koauthor/SelectEmployee",
"type" : "POST",
"data" : JSON.stringify({"name": request.term}),
"contentType" : "application/json",
"success" : function(data) {
response(data);
},
"error" : function(error)
{
alert("error: "+JSON.stringify("There was an error!"));
}
});
$("#divAuthorSearch").hide();
}
}).focus(function(){
$(this).autocomplete("search", "");
});
当我运行上一个脚本时,出现以下错误消息:
urea<-as.factor(Dati_Rsoftware[,1])
fungi<-as.factor(Dati_Rsoftware[,2])
qPCR<-as.matrix(Dati_Rsoftware[,3:7])
output<-manova(qPCR~urea*fungi)
summary.aov(output)
summary(output, test='Wilks')
这是什么意思?可以使用这种分析吗?