Displaying 4 results from an estimated 4 matches for "modcli".
Did you mean:
modal
2006 Jan 16
2
agi debug - unable to set normal priority
Hello!
In my agi-debug i get the following error-message:
AGI Rx << Jan 16 14:45:52 WARNING[18299]: asterisk.c:788 ast_set_priority:
Unable to set normal priority
AGI Tx >> 510 Invalid or unknown command
AGI Rx << SET VARIABLE MODCLI 00434345452
the agi i call is a very simple shellscript that simply removes wrong
charakters:
#!/bin/bash
modcli=`echo $1 | sed -e 's/#//g' -e 's/*//g'`
#echo $modcli
echo "SET VARIABLE MODCLI $modcli"
the script works as expect, sending the modified variable back to a...
2013 Nov 04
1
How to plot results of clmm()?
Dear list,
I'd like to create a visual plot of a clmm() I've fitted using the
'ordinal' package in R. It's possible to do this with a glm() by using
the 'effects' package. For example:
library(effects)
data(BEPS)
mod <- lm(political.knowledge ~ age + gender + vote, data=BEPS)
eff <- effect("age", mod, default.levels=100)
plot(eff,
2010 Mar 02
1
sem package and growth curves
I have been working through the book "Applied longitudinal data analysis: modeling change and event occurrence" by Judith D. Singer and John B. Willett. I have been working examples using SAS and also using it as an opportunity for learning to use R for statistical analysis.
I ran into some difficulties in chapter 8 which deals with using structural equation modeling. I have tried to
2003 Jul 02
2
using [i] to plot & label all vector elements
I'm using 1.6.2 on a win 2k box. (I know I'm due for an upgrade.)
I've used brute force to label a series of vectors, and I'm wondering if
there's a better way to do this. I wanted to create a biplot of the 2nd
& 3rd PCs, and did this:
test <- edit(loadings(cv.prc.spr))
test.1 <- test[,1]
test.2 <- test[,2]
test.3 <- test[,3]
x0 <- 0
y0 <- 0
i <-