search for: modc

Displaying 4 results from an estimated 4 matches for "modc".

Did you mean: mod
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...
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
...0 i <- order(test.1) x <- test.1[i] y <- test.2[i] z <- test.3[i] # and added the arrows to the pc plot with the following brute force labeling. arrows(x0, y0, x[i],y[i], length=0.1, lty=3) text(x[i],y[i],labels=c("srnv", "ann.precip", "area.gt500", "modc" , "cscd","nwca", "range.ann.T", "mean.ann.T", "min.ann.T", "sedi", "gran", "aluv", "cwca1", "elev", "volc", "gcv", "max.ann.T", "peak.flow.mnth"), cex=.7...