Displaying 20 results from an estimated 100 matches similar to: "list & calculaton in many df subsets"
2004 May 15
1
Fwd: filter out many data.frames
X <- numeric(length(data.frame))
before the loop maybe work, because
my computer works and works !?
christian
---------- Weitergeleitete Nachricht ----------
Subject: filter out many data.frames
Date: Sonntag, 16. Mai 2004 00:02
From: Christian Schulz <ozric at web.de>
To: r-help at stat.math.ethz.ch
Hi ,
i would like filter out all combinations of a data-mining result?
How i
2011 Aug 17
1
Why does the graph converge?
I have a set of functions:
Probability <- function(N, f, w, b, l, n, q) {
#N is the number of lymph nodes
#f is the fraction of Dendritic cells (in the correct node) that have the
antigen
#w is time in terms of hours
#b is the starting position (somewhere in the node or somewhere in the gap
between nodes. It is a number between 1 and (x+t))
#q is the length of the time step
#l is the LN
2013 Feb 07
1
Eclipse CDT not working properly
Hello again,
Another problem with my new CentOS 6 installation:
The C/C++ support in Eclipse seems to be partial or missing - even
though eclipse-cdt is installed. Eclipse starts all right, and I get a
C/C++ perspective, but:
1. If I open a C++ file, it's sent to an external editor.
2. C or C++ is not mentioned in Preferences.
3. I can't find a reference to CDT under Help->About
2006 Jul 11
4
checkboxes with a has_many :through relation
All,
I''m populating a view with checkboxes in a list. I want to be able to
assign to my has_many relationship using the post values of these
checkboxes. Essentially, I want to populate the relationship table
which will create the correct join values in my model.
Here is my check_box_tag code:
<%= check_box_tag("@current_job[target_list_ids][]",
2008 Mar 06
1
can't merge zoo ojects and convert to ts (been trying for 2 days)
I'm stuck, but am sure it can be done I just don't understand how.
I have data in an irregular timeseries. I want to be able to use stl to
visualise the data (see seasonal parts etc), so I need to change to regular
series of class ts (I think).
I am using 2 zoo objects one is regular and the other is my irregular data.
I am then merging to create the object I want but when I try to change
2004 Feb 28
1
Line splitting in system() (PR#6624)
According to the manual, system() splits output lines into
8096-char chunks; under UNIX, actually seems to return 8094
chars, and drop the 8095th. Spot missing digits in:
x2 <-
system("perl -e 'print \"0123456789\"x10000'",
intern=T)
Looks like a bug in the code to remove newlines at
src/unix/sys-unix.c:218 -- fgets() reads size-1 characters
and adds
2011 Oct 19
0
R classification
hello, i am so glad to write you.
i am dealing now with writing my M.Sc in Applied Statistics thesis, titled " Data Mining Classifiers and Predictive Models Validation and Evaluation".
I am planning to compare several DM classifiers like "NN, kNN, SVM, Dtree, and Naïve Bayes" according to their Predicting accuracy, interpretability, scalability, and time consuming etc.
I have
2010 Feb 04
0
GLMM and false convergence (8) warnings
Hi,
I am doing a binomial GLMM with a random intercept using the formula below,
but I always get the same warning message.
> m01 <- lmer(pres~ HT + DN + dtree + DNm + cmnhi + cmxes + cplan + craan +
lfphal0100 + lfov0100 + lfop0100 + (1|plot), family=binomial, data=vphal,
verbose=TRUE)
0: 6309.9448: 0.459924 -5.20747 -0.378722 0.558779 -0.200922
-0.0488451 -0.397844 0.367916 -2.09820
2005 Feb 03
0
call RODBC function from DCOM
Hi.
My VB program run a R - script located in the server
with R DCOM server. The R - script is designed to send
a query to DB through ODBC. There is NOT any problem
when I run each code from R-window interface.
However, when I call the R-script from my VB program
it stucked after calling "sqlQuery" statement. I can
check that odbcConnect(dsn, uid, pwd) returns -1.
2008 Feb 05
2
How to generate table output of t-test
Hi,
Given
test <- matrix(c(1, 1,2,2), 2,2)
t <- apply(test, 1, t.test)
How can I obtain a table of p-values, confidence interval etc, instead of
[[1]]
One Sample t-test
data: newX[, i]
t = 3, df = 1, p-value = 0.2048
alternative hypothesis: true mean is not equal to 0
95 percent confidence interval:
-4.853102 7.853102
sample estimates:
mean of x
1.5
[[2]]
2011 Sep 29
1
2.0.14 doveadm proxy list segfault
Hi Timo,
Periodic segfaults with doveadm proxy list:
root at director1:~) doveadm proxy list
doveadm(root): Error: LIST failed: Disconnected
Segmentation fault (core dumped)
Sometimes it's just the 'LIST failed' error, other times it's the error with
the segfault. Usually the first attempt to call it works, subsequent attempts
fail.
I've attached a strace log of it in
2010 Nov 09
3
Is there a way to have 'comment' keep a list?
Hello all,
I recently discovered the "comment" command.
I see it can only hold a vector of characters.
Is there a way (or an alternative), to make it possible to have it keep a
list?
(for example, to keep different pieces of information like date of creation,
information of each variable and so on)
The closest solution I can think of is using 'names' on the vector, like
this:
2006 Jan 11
1
can remote_function update two div simultaneously?
hi all
i m using remote_function , & i need to update two divs at same time (so no :success/:failure)....
is there any posiible soln for this
thanks
rohit
---------------------------------
Yahoo! Photos
Ring in the New Year with Photo Calendars. Add photos, events, holidays, whatever.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2014 Jan 20
1
Samba4 and redircmp.exe
I tried to change the default computers container with the redircmp.exe but it
does not work.
With this tool from microsoft it should be posiible to redirect computer
accounts to a different ou.
Does this tool work with samba4 or is there an other why to do this?
2002 Dec 06
2
Fitting 2D vs. 2D data with nls()
Dear R-experts!
I have y(x) data, dim(y) == dim(x) == c(2000, 2)
I'd like to fit them with nls:
fit.result <- nls ( y ~ f(x, p1, p2, p3),
start = list(p1 = ... , p2 = .. , p3 = ..)
)
Actually I want to fit y[,1] ~ x[,1] and y[,2] ~ x[,2]
*simulaneously*, with the same parameters set {p1, p2, p3}.
I tried to feed R tha above formula, R errors with:
2004 Apr 19
4
zaphfc
Hello list,
I'm trying to use zaphfc, the module loads ok, and it identifies the hfc
boards in the machine.
The problem is: whenever i try to ztcfg -vv I get the following:
8x-------------------
Zaptel Configuration
======================
SPAN 1: CCS/ AMI Build-out: 399-533 feet (DSX-1)
Channel map:
Channel 01: Individual Clear channel (Default) (Slaves: 01)
Channel 02: Individual
2013 Jan 29
3
Can I define a object array in R?
Here is my problem,
100 decision trees were built(similar to random forest) and I want to
replace some of them by new trees.
How can I define a tree array including 100 trees, i.e. t[100], and every
t[n] is an "C5.0" object,
such that
when a new tree comes, i can do
n<-10
t[n]<-C5.0(...)
--
View this message in context:
2003 Jun 04
2
plot rpart tree's from list object
Hello,
i want the post plot's from a rpart list object with
18 tree's , getting no error - but getting no files,too?
Perhaps i should using assign!?
for (i in 1:length(treeList)) {
post(treeList[[i]],filename=paste("Tree","i",sep=".ps"), title="Arbeitszufriedenheit",
digits=getOption("digits") - 0,use.n=TRUE)
}
many thanks for help,
2004 Dec 03
2
Unable to create channel of type 'Zap' (cause 0)
Hi,
I've created a test at "extensions.conf" like this with 3 steps:
; When dial 5555, get the first available channel and dial do 482343400
exten => 5555,1,Dial(Zap/g1/482343400,5,rt)
; When dial 5555, get the channel 20 and dial do 482343400
exten => 5555,2,Dial(Zap/20/482343400)
; Go to Voicemail 1234
exten => 5555,3,Voicemail(u1234)
I've tried using just the
2006 Jan 31
2
SVM question
I'm running SVM from e1071 package on a data with ~150 columns (variables)
and 50000 lines of data (it takes a bit of time) for radial kernel for
different gamma and cost values.
I get a very large models with at least
30000 vectors and the prediction I get is not the best one. What does it
mean and what could I do to ameliorate my model ?
Jerzy Orlowski