Displaying 5 results from an estimated 5 matches for "results3".
Did you mean:
results
2011 Sep 10
0
npreg: plotting out of sample, extremely large bandwidths
...d",theta=300)
evaluate <- data.frame(x1=mydata2$x1>=mydata2$x2)
# use exdata option to specify the set of (x1,x2) points
# note that this produces exactly the same plot
plot(results2,exdata=evaluate,view="fixed",theta=300)
# try specifying the evalution points in npreg itself
results3 <- npreg(bws=bandwidth2,exdata=evaluate)
summary(results3)
# the results are the same
plot(results3,view="fixed",theta=300)
plot(results3,exdata=evaluate,view="fixed",theta=300)
# PROBLEM 2: Bandwidth estimated in the tens of millions
# I suspect this is a question of sampl...
2007 May 30
2
How to search with limit by field
Hello,
I have a ferret index with 2 fields:
Acts_as_ferret :fields => [:client, :content]
If I do model.find_by_contents(query) I obtain all results by the query
but I would like to obtain 3 results for each client.
Any ideas?
Thanks for all.
--
Posted via http://www.ruby-forum.com/.
2011 Nov 29
2
aggregate syntax for grouped column means
...~ id ,data=myData,FUN=mean,na.rm=T)
head(results1,1)
# id var1 var2
# 1 0m11 30.79 32.27
library(data.table)
mydt <- data.table(myData)
setkey(mydt,id)
results2 <- mydt[,lapply(.SD,mean,na.rm=TRUE),by=id]
head(results2,1)
# id var1 var2
# [1,] 0m11 30.84 32.27
library(plyr)
results3 <- ddply(myData,.(id),colwise(mean),na.rm=TRUE)
head(results3,1)
# id var1 var2
# 1 0m11 30.84 32.27
> sessionInfo()
R version 2.14.0 (2011-10-31)
Platform: i386-pc-mingw32/i386 (32-bit)
locale:
[1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United
States.1252 LC_MONET...
2009 Jun 04
3
TODO list for qemu+KVM networking performance v2
As I'm new to qemu/kvm, to figure out how networking performance can be improved, I
went over the code and took some notes. As I did this, I tried to record ideas
from recent discussions and ideas that came up on improving performance. Thus
this list.
This includes a partial overview of networking code in a virtual environment, with
focus on performance: I'm only interested in sending
2009 Jun 04
3
TODO list for qemu+KVM networking performance v2
As I'm new to qemu/kvm, to figure out how networking performance can be improved, I
went over the code and took some notes. As I did this, I tried to record ideas
from recent discussions and ideas that came up on improving performance. Thus
this list.
This includes a partial overview of networking code in a virtual environment, with
focus on performance: I'm only interested in sending