search for: pig

Displaying 20 results from an estimated 362 matches for "pig".

Did you mean: pid
2007 Dec 27
2
groupedData function not found
Hello, I'm trying to use the groupedData function and R is giving me the message: Error: can not find function "groupedData" The code is coming from a textbook so I think it should be correct: pigs<-data.frame(cbind(pig.time,pig.id,pig.wt)) pig.growth<-groupedData(pig.wt~pig.time|pig.id,data=pigs) I have added the package "nlme" and to confirm that it was installed correctly I requested the list of functions included in the package (library(help=nlme)) and I do see groupData...
2004 Aug 26
1
smbpasswd complains about LDAP: "Object class violation"
...ning up against a problem. It is my understanding that the machine trust accounts need to be added with smbpasswd (or an LDAP workaround such as the smbldap-useradd.pl that comes with samba), but smbpasswd fails with the following error: -------------------------------- # ./smbpasswd -a -m guinea-pig$ ldap_connect_system: Binding to ldap server as "cn=directory manager" LDAP search "(&(uid=guinea-pig_)(objectclass=sambaAccount))" returned 0 entries. ldap_connect_system: Binding to ldap server as "cn=directory manager" failed to modify user with uid = guinea-pig...
2020 Sep 13
1
metaflac --show-all-tags (patch)
Hi folks, I always wondered why there is no "metaflac --show-all-tags", in parallel to --remove-all-tags. Attached you can find a patch for your consideration. Sample output: % metaflac --show-all-tags *.flac 01 Pigs on the wing (Part One).flac:ARTIST=Pink Floyd 01 Pigs on the wing (Part One).flac:TRACKNUMBER=01 01 Pigs on the wing (Part One).flac:ALBUM=Animals 01 Pigs on the wing (Part One).flac:TITLE=Pigs on the wing (Part One) 01 Pigs on the wing (Part One).flac:GENRE=Rock 01 Pigs on the wing (Part One).fla...
2003 Dec 04
1
assigning colors to barplot when beside=TRUE
...plot. my data have two groups, which i would like to plot side by side. within each group i want to sort the observations in decreasing order, like a pareto chart. the bar colors would relfect the value of a third variable. below i have generated a reproducible example. the bar heights are a given pig's "gain", "type" identifies groups, and the color depends on "day". i would expect to get the five bars colored red, green, red, followed by two whites. instead, i see: red red white red white. (i am aware that in the code below "colv", the color vector,...
2009 Oct 23
1
access elements of a named list using a factor
Hi I have a factor 'f' and a named list 'jj'. I want names(jj) to match up with levels(f). How do I use levels(f) to access elements of jj? > f <- factor(c("pigs","pigs","slugs")) > f [1] pigs pigs slugs Levels: pigs slugs > > jj <- list(pigs=1:10,slugs=1:3) My attempts to produce jj$pigs all give errors: > jj$levels(f)[1] Error: attempt to apply non-function > do.call("$",jj,levels(f)[1]) Er...
2008 Aug 21
2
Large data sets with R (binding to hadoop available?)
...nto R for further analysis. Questions I have for the many expert contributors on this list are: 1. How do others handle situations of large data sets (gigabytes, terabytes) for analysis in R ? 2. Are there existing ways or plans to devise ways to use the R language to interact with Hadoop or PIG ? The Hadoop project by Apache has been successful at processing data on a large scale using the map-reduce algorithm. A sister project uses an emerging language called ?PIG-latin? or simply ?PIG? for using the Hadoop framework in a manner reminiscent of the look and feel of R. Is there...
2004 Oct 05
2
Can join domain; can't logon
...dapsearch. Last time I had this problem, Samba wasn't even communicating with LDAP, but this time it is. When I try to login, here's what the LDAP logs show: [05/Oct/2004:10:03:52 -0500] conn=53576 op=7 SRCH base="o=nebrwesleyan.edu,o=isp" scope=2 filter="(&(uid=GUINEA-PIG$)(objectClass=sambaSamAccount))" attrs="uid uidNumber gidNumber homeDirectory sambaPwdLastSet sambaPwdCanChange sambaPwdMustChange sambaLogonTime sambaLogoffTime sambaKickoffTime cn displayName sambaHomeDrive sambaHomePath sambaLogonScript sambaProfilePath description sambaUserWorkstation...
2006 May 25
5
Wine 0.9.14.compile error (fatal)
...n.) make[2]: *** [baseshader.o] Error 1 make[2]: Leaving directory `/usr/local/src/wine-0.9.14/dlls/wined3d' make[1]: *** [wined3d] Error 2 make[1]: Leaving directory `/usr/local/src/wine-0.9.14/dlls' make: *** [dlls] Error 2 Any ideas? Small patch? Thanks If you wrestle in the mud with a pig. you both get dirty, and the pig likes it. -- Dave Dawson
2006 Apr 27
7
IE install with Wine 0.9.12 under Debian Sarge
...) with Wine under Debian Sarge? I tried all the methods I could find and have not been able to successfully do this. I even tried wiping out the old ~/.wine dir and starting fresh, but to no avail. I would appreciate info on this. Thanks -- ...Dave Dawson "If you wrestle in the mud with a pig, you both get dirty, and the pig likes it."
2006 Jun 05
6
Internet Explorer 6 Setup & App DB
Hi, some time ago (around 7. May 2006) there was a coment in the App DB to get the setup of Internet Explorer 6 working. The Coment was about removing some dll names from the wine.inf file. The coment was removed from the App DB, but the setup still fails for me with current cvs (~2 hours ago). Therefore i like two know two things: - does anyone remember which lines needs to be removed
2010 Sep 26
2
Changing x-axis on boxplot
...each factor with the number for the level centered between the two tick marks.? Any suggestions? ? Thanks, ?Tim? Example: boxplot(len ~ dose, data = ToothGrowth, ??????? boxwex = 0.25, at = 1:3 - 0.2, ??????? subset = supp == "VC", col = "yellow", ??????? main = "Guinea Pigs' Tooth Growth", ??????? xlab = "Vitamin C dose mg", ??????? ylab = "tooth length", ??????? xlim = c(0.5, 3.5), ylim = c(0, 35), yaxs = "i") boxplot(len ~ dose, data = ToothGrowth, add = TRUE, ??????? boxwex = 0.25, at = 1:3 + 0.2, ??????? subset = supp == &qu...
2003 Feb 19
3
working with list
hi, i have two questions: (1) lookup: given a list of 'strings' in a list, i want to know the index of a given string in the list. if the string is not in the list, the index can be 0 or length()+1. for example, suppose i have names <- c("dog", "cat", "pig", "fish"); then i want lookup(names, "cat") to return 2 and lookup(names, "ant") to return 0 (or 5) i am currently doing this in a for loop with a break using identical(). however, since i call this function repeatedly, i am wondering whether there is a more effi...
2006 Jan 13
2
Saving data in an R package - how to maintain that t avariable is a 'factor' when it is coded as 1, 2, 3...
I have a .txt file obtained by saving a data frame in which the first four columns are factors (but represented as 1,2,3 etc). The first four lines are "Pig" "Evit" "Cu" "Litter" "Start" "Weight" "Feed" "Time" "4601" "1" "1" "1" 26.5 26.5 NA 1 "4601" "1" "1" "1" 26.5 27.59999 5.200005 2 "4601&qu...
2016 Feb 12
2
sieve: store string list in varable
Hi, I'm working on a Sieve script and want to store a list of addresses in a variable to easily access the list multiple times later. For example I want to transform this: if address :is "from" ["daffy.duck at example.com", "porky.pig at example.com", "speedy.gonzales at example.com"] { fileinto "friends"; } into something like this: require ["fileinto", "variables"]; set "friends" ["daffy.duck at example.com", "porky.pig at example.com", &quo...
2007 Feb 27
3
rc23 Problem - Assertion Failed
Feb 27 14:17:46 wurfel dovecot: imap-login: Login: user=<USER>, method=PLAIN, rip=127.0.0.1, lip=127.0.0.1, secured Feb 27 14:17:46 wurfel dovecot: IMAP(USER): file mbox-sync-update.c: line 387 (mbox_sync_update_header): assertion failed: (ctx->mail.uid != 0 || ctx->pseudo) This is happening for dozens of users. Anyone have a suggestion of what to adjust? It was happening somewhat
2004 Oct 08
1
Bug in nlme under version 2.0.0
...or below when calling summary() on a lme-object, whereas it works under version 1.9.1 (well, it did last week, before I upgraded). Any help on this? Thx in advance S??ren > library(nlme) > mf <- formula(Weight~Cu*(Time+I(Time^2)+I(Time^3))) > lme1 <- lme(mf, data = dietox, random=~1|Pig) > summary(lme1) Linear mixed-effects model fit by REML Data: dietox AIC BIC logLik 4748.664 4815.081 -2360.332 Random effects: Formula: ~1 | Pig (Intercept) Residual StdDev: 6.360083 3.116751 Fixed effects: Error in as.vector(x, "list") : cannot coerce...
2006 Jun 27
1
N1MM Logger won't run
...error and died (also a few errors and fixmes). I am running Wine 0.9.16 which I compiled from source in Debian Etch, using gcc 4.0. The authors state on the website that they will provide source to developers. Has anyone got this program running under Wine? -- If you wrestle in the mud with a pig. you both get dirty, and the pig likes it. -- Dave Dawson
2006 May 26
1
Patch for baseheader compilation problems
...n.) make[2]: *** [baseshader.o] Error 1 make[2]: Leaving directory `/usr/local/src/wine-0.9.14/dlls/wined3d' make[1]: *** [wined3d] Error 2 make[1]: Leaving directory `/usr/local/src/wine-0.9.14/dlls' make: *** [dlls] Error 2 Any ideas? Small patch? Thanks If you wrestle in the mud with a pig. you both get dirty, and the pig likes it. -- Dave Dawson -- regards Plamen Vassilev Software Engineer & System Administrator Bulgaria, Varna T: +359 52 644615 M: +359 899 989647 E: plamen.vassilev@gmail.com
2008 May 08
1
problem with yumdownload?
coworker wants to download a module with all its dependencies, for use in updating an offline system... CentOS 5.latest ... [root at pig home]# yum -y install yum-utils ...... [root at pig home]# yumdownloader --resolve gcc Loading "priorities" plugin Loading "installonlyn" plugin Excluding Packages from CentOS-5 - Base Finished Excluding Packages from CentOS-5 - Updates Finished 263 packages excluded due to rep...
2007 Mar 19
2
PrintMaster 7.0 *nearly*, *very* nearly printing properly
...t on the output. This is *so* close to being usable. Could anybody suggest a patch for this in wine 0.9.19 ? (if needed)? I'm not at all familiar with wine, but in this case would be willing to debug the code a bit with some help. Any suggestions? Thanks -- If you wrestle in the mud with a pig. you both get dirty, and the pig likes it. -- Dave Dawson