Displaying 8 results from an estimated 8 matches for "maket".
Did you mean:
make
2013 Feb 13
1
WriteXLS: 'object not found' error within function
...ing the WriteXLS function:
print(class(tables))
flush.console()
[1] "list"
At least I would have thought this would have ruled out any scope-related issues. Has anyone else had this problem or have any ideas why it might be happening?
Thanks,
Scott
PS here is the function in full:
makeTables <- function(design, designInfo, oldMatrix, matrix, annot, tableList)
{
rownames(design) <- designInfo[,1]
fit <- lmFit(matrix, design)
fit <- eBayes(fit)
tables<-list()
for (i in 1:length(tableList))
{
table <- makeTable(oldMatrix, matrix, annot, fit, tableList[i])
pri...
2006 Aug 08
3
Pairwise n for large correlation tables?
...of cases used to compute each
cell of the correlation table. I am unable to find such a function via
google searches, so I wrote one of my own. This turns out to be highly
inefficient (e.g., it takes much, MUCH longer than the correlations do). Any
hints, regarding other functions to use or ways to maket his speedier, would
be much appreciated!
pairwise.n <- function(df=stop("Must provide data frame!")) {
if (!is.data.frame(df)) {
df <- as.data.frame(df)
}
colNum <- ncol(df)
result <- matrix(data=NA,nrow=colNum,ncol=ncolNum,dimnames=list(colnames(df),colnames...
2002 Nov 02
5
problem compiling R-1.6.1 on WinNT: pcre
...../extra/pcre/libRpcre.a(get.o)(.text+0x12c):get.c: undefined reference to
`pcre_free'
../extra/pcre/libRpcre.a(get.o)(.text+0x17a):get.c: undefined reference to
`pcre_malloc'
../extra/pcre/libRpcre.a(get.o)(.text+0x1cc):get.c: undefined reference to
`pcre_free'
../extra/pcre/libRpcre.a(maketables.o)(.text+0x20):maketables.c: undefined
reference to `pcre_malloc'
../extra/pcre/libRpcre.a(study.o)(.text+0x64e):study.c: undefined reference
to `pcre_malloc'
make[1]: *** [R.dll] Error 1
make[1]: Leaving directory `/cygdrive/g/Rbuild/R-1.6.1/src/gnuwin32'
make: *** [all] Error 2...
2012 Nov 21
0
Making part of a data frame into a time series
...y
observations on that county. I wanted to get the data in columns n and
higher to be recognized as a bunch of time series. So I wrote a function
that was supposed to turn all the columns from a given column number on into
a time series:
# Convert the final cols of a data frame into a time series
MakeTS <- function(data.df, firstColNo, firstYear, firstSubNo = NULL, freq =
1){
data.df[,firstColNo:ncol(data.df)] <- ts(data =
data.df[,firstColNo:ncol(data.df)],
start = c(firstYear, firstSubNo), frequency = freq)...
2011 Sep 22
1
Wrapper of linearHypothesis (car) for post-hoc of repeated measures ANOVA
...rownames(fc) <- levels(f)
}
# Convert NA into default contrast matrix
}else if (is.na(fc)){
fc <- contrasts(f)
}else{
stop("Invalid value assigned to factor
\"",fname,"\".")
}
levelcomb[[fname]] <- fc
}
return(levelcomb)
}
# makeT() creates a transformation matrix, used to define the
Linear Hypothesis
# matrix (for between-subjects factors) or the response
transformation matrix
# (for within-subjects factors), depending on the combinations
of factor levels.
# The transformation matrix is created progressively, by
"tr...
2005 Jul 04
0
Problem linking with libdb
...nd -ldb
collect2: ld returned 1 exit status
make[1]: *** [arpd] Error 1
make[1]: Leaving directory `/home/src/iproute2-ss050607/misc''
make[1]: Entering directory `/home/src/iproute2-ss050607/netem''
gcc -D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall -I../include -DRESOLVE_HOSTNAMES -o maketable maketable.c -lm
gcc -D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall -I../include -DRESOLVE_HOSTNAMES normal.c -lresolv -L../lib -lnetlink -lutil -L/usr/local/BerkeleyDB.4.2/lib -lm -o normal
gcc -D_GNU_SOURCE -O2 -Wstrict-prototypes -Wall -I../include -DRESOLVE_HOSTNAMES pareto.c -lresolv...
2005 Oct 04
4
iproute2-050929 ERORR compiling
...rror: request for member `close'' in something not a structure or union
make[1]: *** [arpd] Error 1
make[1]: Leaving directory `/home/src/a/04102005/iproute2-050929/misc''
make[1]: Entering directory `/home/src/a/04102005/iproute2-050929/netem''
gcc -Wall -O1 -I../include -o maketable maketable.c -lm
gcc -Wall -O1 -I../include -o normal normal.c -lm
gcc -Wall -O1 -I../include -o pareto pareto.c -lm
gcc -Wall -O1 -I../include -o paretonormal paretonormal.c -lm
./normal > normal.dist
./pareto > pareto.dist
7./paretonormal > paretonormal.dist
./maketable experimental.d...
2004 Sep 23
11
Shorewall and OpenVPN woes
...via OpenVPN to act like it sits on
192.168.2.0/255.255.255.0.
So obviously, to me, this means bridging tap0, tap1 and eth1. That''s as far as
I understand it so far. As far as the firewalling goes.
Firstly, I need to understand what interfaces/rules/policies I have to set in
shorewall to maket his happen.
I can try to do this by hand, but it defeats the purpose of having shorewall
at all, and I like the logical separation of concerns. I just don''t always see
how to do the complicated stuff, especially, when I''m not quite understanding
the flow that has to occur.
I att...