search for: prov

Displaying 20 results from an estimated 97 matches for "prov".

Did you mean: prod
2007 Apr 03
2
HPDinterval problem
...) Min. 1st Qu. Median Mean 3rd Qu. Max. 0.00 4.00 7.00 11.99 15.00 108.00 > summary(pv2toa[1:1392]) Min. 1st Qu. Median Mean 3rd Qu. Max. 0.00 4.00 7.00 11.94 15.00 108.00 > m1.16 <- lmer(o ~ pv1o + pv2o + pv1toa + pv2toa + sesblf + (pv1o | prov) + (pv1toa | prov) + (pv1o | pm) + (pv1toa | pm), data = mydata[1:1392,], family = quasipoisson) > m1.16 Generalized linear mixed model fit using Laplace Formula: o ~ pv1o + pv2o + pv1toa + pv2toa + sesblf + (pv1o | prov) + (pv1toa | prov) + (pv1o | pm) + (pv1toa | pm) Data: mydata[1:1392, ]...
2012 Nov 09
5
using lapply with recode
Hello: Forgive me, this is surely a simple question but I can't figure it out, having consulted the help archives and "Data Manipulation With R" (Spector). I have a list of 11 data frames with one common variable in each (prov). I'd like to use lapply to go through and recode one particular level of that common variable. I can get the recode to work, but it only returns the variable that has been recoded. I need the whole data frame with the recoded variable. Thank you for your help. Reproducible data and my curre...
2005 Feb 25
2
407 Proxy Authentication Required
Hi everybody: I configured my Asterisk to register to my VoIP provider, and I can make outgoing calls, but I can't receive any calls with it. I used Ethereal to sniff the activity of it, and I found something that might be causing the problem: When my provider's gateway does the "Request: INVITE mynumber@my-voip-provider.tld ..." my Asterisk asks...
2012 Aug 07
2
Error using ddply inside user-defined function
Hi All, I *think* it's ddply because the function recognizes vr1, etc, in other parts of the function. Here's some code: # create dataset PROV.PM.FBCTS <- c(0.00 ,0.00, 33205.19, 25994.56, 23351.37, 26959.56 ,27632.58, 26076.24, 0.00, 0.00 , 6741.42, 18665.09 ,18129.59 ,21468.39 ,21294.60 ,22764.82, 26076.73) FBCTS.INV.TOT <- c(0 , 0, 958612, 487990, 413344, 573347, 870307, 552681 , 0, 0 , 163831 , 400161 , 353000...
2008 Dec 04
2
Round four: Re: code review req: 6750659 drti.o crashes app due to corrupt environment
I believe that I have incorporated all of the feedback given (thanks!). Changes since the 2008-11-16 version include: - ksh style & coding standards compliance in test script (Roland) - "dof_init_debug == B_FALSE" vs. "!dof_init_debug" (Adam) The updated webrev is at: http://cr.opensolaris.org/~mgerdts/6750659-2008-12-03/ -- Mike Gerdts http://mgerdts.blogspot.com/
2003 Jun 17
1
lme() vs aov(y ~ A*B + Error(aa %in% A + bb %in% B)) [repost]
I've posted the following to R-help on May 15. It has reproducible R code for real data -- and a real (academic, i.e unpaid) consultion background. I'd be glad for some insight here, mainly not for myself. In the mean time, we've learned that it is to be expected for anova(*, "marginal") to be contrast dependent, but still are glad for advice if you have experience. Thank
2007 Apr 03
1
lmer, CHOLMOD warning: matrix not positive definite
...rDevices" "utils" "datasets" "methods" "base" other attached packages: lme4 Matrix lattice "0.9975-13" "0.9975-11" "0.14-17" > m1.1 <- lmer(o ~ pv1o + pv2o + pv1toa + pv2toa + sesblf + (1 | prov) + (1 | pm), data = mydata[1:1392,], family = quasipoisson) > m1.1 Generalized linear mixed model fit using Laplace Formula: o ~ pv1o + pv2o + pv1toa + pv2toa + sesblf + (1 | prov) + (1 | pm) Data: mydata[1:1392, ] Family: quasipoisson(log link) AIC BIC logLik deviance 2622 2675 -1301...
2006 Mar 26
2
Problem with names() in a plot after ordering a data.frame. Syntax or stupidity?
...t;MB","YT","NL","NB","NS","PE") Area <- c(1936113, 1365128, 1183085, 925186, 917741, 642317, 591670, 553556, 474391, 373872, 71450, 53338, 5660) # ------------------------Crude working program------------------------------ provs <- data.frame(Name, Pcode, Area) attach(provs) numberProvs <- length(Pcode) # This next step reverses the order of Pcode to make # the names match the sorted Area names(Area) <- rev(Pcode) Lines <- 1:numberProvs plot(sort(Area), Lines, pch=20, col="red",...
2012 Jun 08
2
Problem with sample function
Dear list Is there a way to extract a random sample without duplicated row from a dataframe ?. a=c(1,2,3,1,1,1,2,1) b=c(1,2,3,1,2,1,2,1) c=c(1,1,1,1,1,1,1,1) d=c(1,2,3,1,1,1,2,1) prov<-data.frame(a,b,c,d) prov2<-prov[sample(1:nrow(prov),5,replace=T),] prov2 a b c d 3 3 3 1 3 6 1 1 1 1 3.1 3 3 1 3 5 1 2 1 1 8 1 1 1 1 I tryed the above code but as you can see sample function includes also duplicates. thank you for any tip Guido [[alternative HTML version dele...
2008 Oct 21
3
code works in R desktop but not iin RWeb - How do I modify to get it working in RWeb, please?
...ork with RWeb? #Read in txt file happyguys<-read.table("c:/test8.txt", header=TRUE, row.names=1) #Subset the txt file to only include certain values test<-subset(happyguys, GRADE == 7 & Y_Q10A < 9) #print the subset file print(test) mydata<-test #Sort the data by province, and then by Y_Q10A mydataSorted<-mydata[ order(mydata$PROV,mydata$Y_Q10A), ] print(mydataSorted) #Weight the data and aggregate the value by province. There are 2 values for each province (1 & 2) and the results show the number of people for each province who responded with value 1...
2011 Jan 20
5
context problem
Hello list, Asterisk 1.6.16.1 I have the following registrations : register => 119909:passwd at sip.prov.org/52525252 register => 119909:passwd at sip.prov.org/59595959 [119909] type=friend host=sip.prov.org username=119909 defaultuser=119909 secret=passwd context=TRUNKin extensions.conf : [TRUNKin] exten => _52525252,1,NoOp(context TRUNKin - 52525252) exten => _52525252,n,GoTo(blabla,5252...
2008 Feb 16
2
NoMethodError... but its not a method!
...dividually. Now that it is put together, I''m having problems... The one giving me problems is my "ImportController" which parses a CSV during post and puts it into my database. I have two separate CSV upload actions (one is for a bill called "bes" and the other from the provider "prov"). The one for BES works fine. Prov worked perfectly fine before, but now it gives me this error: undefined method `prov_charges_tot='' for #<Prov:0x4674734> The thing is, thats not even supposed to be a method! The relevant part of the view looks like this: &lt...
2007 Apr 26
4
select if + other questions
Hi, i am trying to read a .txt file, do a couple of select if statements on my data, and then finally use the ?table function to get frequency counts on the data. Specifically, i am looking at answering the following question: What is the frequency of Grade 7 students in the province of Alberta who are smokers? I am having some problems: 1)i cannot get the column names to show up when print to screen 2)I cannot seem to skip variables properly when i choose certain other variables 3)i cannot get the combination of Select If statements to work to produce a different ta...
2004 Feb 16
2
Data for use in maps()
Dear all, I am interested in plotting maps visualizing spatial statistics in an aggregated fashion, according to administrative boundaries. More specifically, I have fitted a cross-section model on data regarding Italian "counties" (province, for Italian readers) and I would like to visualize residual behavior on a map, in order to have a first assessment of their spatial autocorrelation. I would also make some EDA on the spatial patterns (if any) of the regressors. I have found the maps package (and related) and would be able to...
2012 Dec 10
3
Warning message: In eval(expr, envir, enclos) : non-integer #successes in a binomial glm!
...nts and the model fitting. I'm grateful for any help. I'm aware that the topic of non-integer successes has been addressed before, but I could not find my answer to this question. Yours, Simon Kiss ######str() on original data str(mat1) 'data.frame': 1001 obs. of 5 variables: $ prov : Factor w/ 4 levels "Ontario","PQ",..: 2 2 2 2 2 2 2 2 2 2 ... $ edu : Factor w/ 2 levels "secondary","post-secondary": 2 2 2 1 1 2 2 2 1 1 ... $ gender: Factor w/ 2 levels "Male","Female": 1 1 2 2 2 2 1 1 2 2 ... $ weight: num 1.1...
2006 Apr 21
8
listing available provider names
Is there a trick to listing available providers? I can''t find it.
2008 Oct 23
1
code works in R desktop but not iin RWeb - I got it working
...your help though!! Natalie __________________ I think you have to be either honest or careful, since the code you submitted to Rweb is different with your former code! Why the condition was changed from "test<-subset(X, GRADE == 7 & Y_Q10A < 9)" to "test<-subset(X, PROV==48 & GRADE == 7 & Y_Q10A < 9)"? By the way, please read the post guide -- I have no way to reproduce your result. Regards, Yihui -- Yihui Xie <xieyihui@gmail.com> Phone: +86-(0)10-82509086 Fax: +86-(0)10-82509086 Mobile: +86-15810805877 Homepage: http://www.yihui.name Scho...
2007 Apr 27
5
weight
...e the file below called happyguys. It is a subset of data. How do I apply the weight variable (WTPP) to this file? Can i just multiply each column (except the first column because it is a record id) by WTPP? If the answer is yes, how do I multiply one variable name by another? Thanks, Nat PROV REGION GRADE Y_Q10A WTPP 83 48 4 7 2 342233324020 115 48 4 7 1 434413433040 185 48 4 7 1 432312433040 222 48 4 7 2 133112222030 242 48 4 7 1 421313332020 247 48 4 7 2 312134212030 35...
2004 Jul 12
0
IAXy prov. using DNS
Hi folks, I found that I can config my IAXy to connect to a * server that is has a fixed IP. I'm using dynamic dns solusion, and I want the IAXy to be able to connect to domain.name.server instead of IP. Do you know how to do that? if it is not possible, do you know when will it be? thanks
2006 Oct 13
5
Polycom IP 501 phone randomly resets itself (loses Received call log, Missed calls, placed calls)
I've been noticing that my group of Polycom IP 501 phones seems to randomly reset themselves nearly every night (I guess it usually happens at night, since I've never seen it happen while I've been at work during the day).. When I say "reset", I mean, the hands free volume and ring volume are set to the default and the call logs (received calls, missed calls, placed calls)