similar to: Addons

Displaying 20 results from an estimated 9000 matches similar to: "Addons"

2005 Apr 13
3
Document Management System
Hi all, I was wondering if someone can give me some pointers to a good Document Management System. I've been using Knowledge Tree for a while and just wondering if there is something a bit more robust. I'm archiving technical specs, functional documents, etc... TIA, Joao Jo?o Medeiros Linux User 381318
2005 Feb 17
2
Oracle Apps on Linux
Hi folks, I seem to remember someone asking how to install Oracle Apps on Linux so here goes a quick and dirty how-to:- 0 - You will need access to Metalink (Oracle's support site) for downloading patches and read documentation on line. 1 - Size up your Linux box to at least 1Gb memory and 200Gb of disk space. I'm assuming you have a Pentium 4 at around 3GHz. 2 - Download and
2005 Mar 30
6
DHCPd Config
I've read a number of articles, googled the web for a few months and now attempting at turning my CentOS box into a gateway for the third time. Configured my dhcpd.conf and other related files and all seems to be working, I can have my M$ desktop leasing an ip address and all. The problem is when I want to go out to the internet I keep on getting the Request Timed out error. I'm pretty
2011 Feb 08
3
intervals {nlme} lower CI greater than upper CI !!!????
Hi folks... check this out.. > GLU<-lme(gluc~rt*cd4+sex+age+rf+nadir+pharmac+factor(hcv)+factor(hbs)+ + haartd+hivdur+factor(arv), + random= ~rt|id, na.action=na.omit) > intervals(GLU)$fixed lower est. upper (Intercept) 67.3467070345 7.362307e+01 7.989944e+01 rt *0.0148050160* 6.249304e-02 1.101811e-01 cd4
2011 Jun 28
1
About the covariant
Hi all,I have some questions about the covariants of regression. My target: To explore the trend of CD4 level through a period of time. Response variable: CD4 count Explanatory variable:time Also, the demology information is available,such as gender,occupation,income level... Q1,Are these variables of demology information called covariant? Q2,How can I correct the impact of
2011 Jul 26
3
a question about glht function
Hi all: There's a question about glht function. My data:data_ori,which inclue CD4, GROUP,time. f_GROUP<-factor(data_ori$GROUP) f_GROUP is a factor of 3 levels(0,1,2,3) result <- lme(sqrt(CD4) ~ f_GROUP*time ,random = ~time|ID,data=data_ori) glht(result, linfct = mcp(f_GROUP="Tukey") ) Error in `[.data.frame`(mf, nhypo[checknm]) : undefined columns selected I can't
2011 Feb 06
1
random interaction effect in lmer
Hi dears while modeling an interaction random effect in lmer i receive the instantaneous error message > ldlM4<-lmer(ldl~rt*cd4+age+rf+pharmac+factor(hcv)+ + hivdur+(rt:cd4|id),na.action=na.omit,REML=F) *Warning message: In mer_finalize(ans) : false convergence (8) * I think the matter lies in syntax, 'cause i sistematically receive the same message even when changing response... PS:
2002 Sep 09
1
Plots by subject
Hello! I need some help with creating plots for each study subject. I have tried the 'for' command as described in 'An Introduction to R', but I wasn't successful. Here's what I want to do: -Create and save the following overlayed scatterplots for each subject (1 to n). -The data frame is in the form of one line per visit per subject (so more than one line per
2011 Jul 25
1
lme convergence error
Hello, I am working from a linux 64 machine on a server with R-2.12 (I can't update to 2.13). I am iterating through many linear mixed models for longitudinal data and I occasionally receive the following convergence error: > BI.lme <- lme(cd4 ~ time + genBI + genBI:time + C1 + C2 + C11 + C12, random =~ 1 + time | IID, data = d) Error in lme.formula(cd4 ~ time + genBI + genBI:time +
2007 Jul 24
1
MySQL components in asterisk-addons not being built
I'm trying to add MySQL CDR recording in Asterisk 1.4.6. I'm following the instructions posted here: http://www.voip-info.org/wiki-Asterisk+cdr+mysql I have MySQL installed and it works fine - starts on stratup, I can create DBs, tables and so on and I can connect through php. rpm -qa indicates: MySQL-server-5.0.22-0 MySQL-devel-5.0.22-0 MySQL-client-5.0.22-0 However I still get XXX
2011 Dec 13
8
How to compute 95%CI for OR from logistic regression?
Hi all: My data has 3 variables: age(3levels : <30y=1 30-50y=2, >50y=3) gender(Male=0, Female=1) CD4 cell count(raw lab measurement) y(1:death 0:alive) I perform logistic regression to find out the factors that influence y. result<-glm(y ~ factor(age) + factor(gender) + CD4,family = binomial) >From the result,I can get OR(Odds Ratio) of gender via exp(Estimate of Female,
2016 Feb 24
3
search problem dovecot 2.2.21 + fts - Solr
Hello, Realized update dovecot on my server. Now the search is returning differently from the previous version bringing reference information of other messages . For example when doing a search for anderson.joao this new version of the dovecot dovecot 2.2.21 + fts - Solr response will be all email that has the word anderson and joao, instead of returning only items with the word anderson.joao.
2009 Apr 16
1
How can I catch errors thrown from c via the Rcpp error() function?
Hi I am using the flowClust package from BioConductor, which is largely implemented in c. For some of my data, the package occasionally (and quite stochastically) encounters a particular condition which halts its operation. At this point, it calls the error() function defined by Rcpp, and halts. What I would like to be able to do is to catch the error thrown, and retry the operation a few
2005 Jun 23
1
Multiple IP Addresses in a single NIC
Hi all, I've been trying to add a second ip address to one of my network cards in my CentOS box. I've defined the alias on top of eth1 which has become eth1:1 with a different ip address. I can ping the new ip address both from my linux box as well as from my Windoze desktop, however I can only access my Apache web server setup as a virtual host from within the Linux box. If I try to
2009 Dec 15
1
Changing Column names in (Output) csv file
Dear R helpers   Following is a part of R code.   data_lab <- expand.grid(c("R11", "R12", "R13"), c("R21", "R22", "R23"), c("R31", "R32", "R33"), c("R41", "R42", "R43"), c("R51", "R52", "R53"), c("R61", "R62", "R63"),
2009 May 27
1
How to write a loop?
Dear R helpers,   Following is a R script I am using to run the Fast Fourier Transform. The csv files has 10 columns with titles m1, m2, m3 .....m10.     When I use the following commands, I am getting the required results. The probelm is if there are 100 columns, it is not wise to define 100 commands as fk <- ONS$mk and so on. Thus, I need some guidance to write the loop for the STEP A and
2009 Oct 22
2
ChanSpy in Asterisk 1.2.24
Hello I have an old Asterisk where I need to listen to Agent calls. So I created this code: exten => _555,1,ChanSpy(Agent) exten => _555,n,Hangup() But I always get: 2009-10-22 16:00:38 WARNING[5695]: pbx.c:1720 pbx_extension_helper: No application 'ChanSpy' for extension (default, 555, 1) It seems that Asterisk doesn't have ChanSpy enabled... is this possible? Which
2009 Jul 28
2
AGI with queues status
Hello I'm trying to use an AGI that returns the queues status (numbers of available agents, etc ), but I'm having some problems with it (it's still very buggy). Is there any AGI repository with source code samples? Had anyone used an AGI to check queues and agents status? Thanks regards Joao Pereira -- StarTel - A Rede Livre Joao Gomes Pereira www.startel.pt +351 304500650 sip:
2011 Dec 21
5
R Source Code Request Office For National Statistics UK
To R Support Team, ONS would like a restricted number of its IT staff to view the source code for the latest version of your software, to check it against our source code security guidelines.The source code will be securely stored with access limited. ONS is quite happy to agree that we would not - copy or change your source code without your agreement - share the source code with anyone
2009 Dec 01
2
Asterisk registers with private IP
Hello I'm trying to register an Asterisk working behind Nat. Here is the trunk: register=username:password at sip.startel.pt [startel] type=peer host=sip.startel.pt username=username fromuser=username secret=password qualify=yes disallow=all allow=ulaw allow=alaw allow=gsm insecure=very port=5060 nat=yes canreinvite=yes The problem is: Asterisk is registering with its