Displaying 10 results from an estimated 10 matches for "influent".
2012 Jul 10
2
Understanding cenros Error
...= offset, singular.ok = singular.ok, ...) :
NA/NaN/Inf in 'y'
I would like to learn what I did incorrectly so I can avoid these errors
in the future.
The data frame structure is
str(chem)
'data.frame': 120309 obs. of 8 variables:
$ site : Factor w/ 65 levels ";Influent","D-1",..: 2 2 2 2 2 2 ...
$ sampdate: Date, format: "2007-12-12" "2007-12-12" ...
$ preeq0 : logi TRUE TRUE TRUE TRUE TRUE TRUE ...
$ param : Factor w/ 37 levels "Ag","Al","Alk_tot",..: 1 2 8 17 3 9 ...
$ quant : num 0...
2008 Mar 18
1
lme library
Dear authors,
I?m an Italian PhD student and I?m dealing with linear mixed models.
I?d like to use your lme library, but I have a problem.
I?m able to estimate a null model.
For example, using SAS data, I can estimate the model:
lme(y ~ 1, data = Mississippi, random = ~ 1|influent, method="ML")
As suggested in the literature I want to ?test? the significance of the
second level variance. So, I would like also to estimate a linear model
without random effects. Is it possible with your library?
In the description of the function lme I found that the random part is
o...
2002 Oct 25
1
Problem when fitting a constant response
...ral composite design with 27 runs) for a constant response (e.g
resp = 100.0). The fitting process works and return me a good intercept
value (the value of my constant) and some negligeable effects (around
e-15). But, I don't understand some results :
the t values (or the F stat) indicates some influent parameters
(although they are negligeable in comparison with the intercept) and the
R2 value is not equal to 1 (Multiple r2 = 0.72, and adj r2 = -0.187),
although the residuals are near zero. I know, it is a very special case
(regression is not necessary), but it is just to understand what is
happe...
2006 Jul 28
2
Problem with iptables with -j TOS and MARK
Hy,
I would want to mark the packets that are entering in a machine, with a
mark for using diffserv with DSMARK.
My machine has 2 interfaces, a ethernet and a wireless. The ethernet
interface is eth1 and the other is wifi0.
Firs, I would want to test that I would be able to mark the tos of the
paquets that I would be receiving, for this I write in the console of my
linux:
iptables -A
2010 Sep 29
4
Problem when "valid users" is used
Hi,
When I use "valid users" in smb.conf to limit access on my share, I have
this message with smbclient :
[global]
workgroup = MYDOM
domain master = no
local master = no
security = user
passdb backend = ldapsam:ldap://x.x.x.x:389
ldap admin dn = cn=admin,dc=company,dc=com
ldap suffix = dc=company,dc=com
ldap user
2006 Sep 12
5
32E (64bit) VMX keyboard is out of control, if given an addition ''hde''
Hi,
This issue only happens on my IA32E VMX domain. IA32 VMX domain is okay.
I am trying VBD disk in IA32E VMX domain. I used following disk configuration to create an IA32E VMX domain.
disk = [ ''file:/mnt/disk1.img,hda,w'', ''file:/mnt/disk2.img,hde,w'' ]
After creating VMX, its keyboard can not be used properly. For example, if pressing
2012 Jan 25
6
How do I compare 47 GLM models with 1 to 5 interactions and unique combinations?
Hi R-listers,
I have developed 47 GLM models with different combinations of interactions
from 1 variable to 5 variables. I have manually made each model separately
and put them into individual tables (organized by the number of variables)
showing the AIC score. I want to compare all of these models.
1) What is the best way to compare various models with unique combinations
and different number
2012 Sep 04
1
cenboxplot(): Reporting Limit Twice Correct Concentration
...L, 64L, 64L,
64L, 64L, 64L, 64L, 64L), .Label = c("D-1", "D-2", "D-3", "D-4",
"D-5", "D-6", "D-7", "D-8", "D-9", "Effluent", "GB-ES1", "GW-2",
"Gold Bowl Sump", "Influent", "JJ-16", "JJ-18", "JJ-20", "JJ-22",
"MC-1", "MC-2", "MC-3", "MW-1", "MW-10", "MW-11", "MW-12", "MW-13",
"MW-14", "MW-15", "MW-16", "MW-...
2012 Aug 22
1
Error in if (n > 0)
...L, 57L, 59L,
60L, 62L, 63L, 64L, 64L), .Label = c("D-1", "D-2", "D-3", "D-4",
"D-5", "D-6", "D-7", "D-8", "D-9", "Effluent", "GB-ES1", "GW-2",
"Gold Bowl Sump", "Influent", "JJ-16", "JJ-18", "JJ-20", "JJ-22",
"MC-1", "MC-2", "MC-3", "MW-1", "MW-10", "MW-11", "MW-12", "MW-13",
"MW-14", "MW-15", "MW-16", "MW-...
2012 Jan 18
4
R-Help
I am trying to create a frequency distribution and I am a bit confused.
Here are the commands I have entered:
> data <- read.csv(file="40609_sortedfinal.csv",head=TRUE,sep=",")
> NumberOfActionsByStatus = data$STATUS
> NumberOfActionsByUser = data$ETS_LOGIN
> NumberOfBidOffer = data$BID_OFFER
> NumberOfActionsByUser.freq = table(NumberOfActionsByUser)
>