Displaying 8 results from an estimated 8 matches for "rakers".
Did you mean:
makers
2005 Jan 18
1
tinc svn rev 1432 segfaults
...28 in setup_network_connections () at net_setup.c:546
#4 0x080576a9 in main (argc=5, argv=0xbffffa44) at tincd.c:488
subnet_update is something which got added to net_setup.c between
version 1.0.3 and now.
Hope this helps in fixing this issue. If you need more info let me know.
Greetings,
Hans Rakers
2007 Dec 13
5
cant start domU w/ pci [Error: function takes exactly 4 arguments (3 given)]
Hi all,
I''m trying to get a pci card working on a guest os (ast01)
on dum0 I hided the pci card w/:
# modprobe pciback hide=''(0b:08.0)''
then added this line to the guest os config file (/etc/xen/ast01)
pci = [ "0000:08:0e.0" ]
Whenever I try to start it fails w/:
# xm create ast01
Using config file "/etc/xen/ast01".
Error: function takes exactly 4
2007 Nov 24
1
Indexing and partially replacing 99, 999 in data frames
Dear WizaRds,
unfortunately, I have been unable to replace the '99' and '999' entries in
library(UsingR)
attach(babies)
as definitions for missing values NA, because sometimes the 99 entry is
indeed a correct value. Usually, or so I thought, NAs can
easily replace a, say, 999 entry via
mymat[mymat==999] <- "yodl"
in a matrix or data frame. Alas, the babies'
2007 Jan 27
1
Conditional Selection of Columns for Tables
Dear Wizards -
Thank you so much for your help. That was exactly what I was looking
for. Now, I have been working on conditional selection of columns in a
data frame. My goal is to calculate the total revenue per sales
representative per status in a table. I have come to a complete stop:
Let's say, we have a data.frame called df with several columns and a
number of rows:
df <-
2007 Jan 10
2
select subsets in data frame
Dear WizaRds!
A trivial question indeed on selecting subsets in data frames. I am
sorry. Unfortunately, I did not find any helpful information on the
introduction, searched the help archive and read in introductory books.
Please help:
I want to select column "KB" which is read via read.csv2 as a data.frame
into d. I checked that it is indeed a data.frame object and included the
2009 Mar 11
0
problem scrapping ATnT site (Matt White)
Try to use firebug to assist you finding these changes. I never used AT&T
website, but you may need to login and find the download url using firebug
as I did:
http://zenmachine.wordpress.com/2007/11/11/scraping-with-firebug-and-wwwmechanize/
regards,
gm
On Tue, Mar 10, 2009 at 4:12 PM, <mechanize-users-request at rubyforge.org>wrote:
> Send Mechanize-users mailing list submissions
2007 Jul 14
1
return() in nested functions
Dear WizaRds,
After consulting different sources I am still unable to understand the
correct use of return() in nested functions. To illustrate the problem:
f <- function(x,y,type){
est1<-function(x,y){
z=x+y
out(x,y,z)}
est2<-function(x,y){
z=x*y
out(x,y,z)}
out<-function(x,y,z)
return(x,y,z)
if (type=="est1") est1(x,y)
if (type=="est2") est2(x,y)
}
2007 Nov 25
1
Package Building under Windows with MikTeX 2.6
Dear WizaRds,
I wrote a small function in R and would like to create a package. The
necessary documentation is done, Rtools etc. are installed and I am
still unable to complete the process under Windows. I did extensive
research in the archives and read the Murdoch-Sutherland website on the
Rtools and MikTeX hints. I realize that I understand only half or less
of what is said there