Displaying 20 results from an estimated 12603 matches for "achiev".
Did you mean:
achieve
2008 Aug 21
1
rc note, etc
...OK
* checking for portable use of $BLAS_LIBS ... OK
* checking tests ...
make[3]: Entering directory
`/home/mfa/gilp/toolchain/R/src/R-rc/tests/stats.Rcheck/tests'
Running 'nafns.R'
Running 'nls.R'
Comparing 'nls.Rout' to 'nls.Rout.save' ...134c134
< Achieved convergence tolerance: 2.75e-06
---
> Achieved convergence tolerance: 2.74e-06
145c145
< 3: 0.00060639084: 0.00517051 0.999153
---
> 3: 0.00060639084: 0.00517052 0.999153
214c214
< Achieved convergence tolerance: 1.04e-07
---
> Achieved convergence tolerance: 1.34e-07
249c24...
2010 Jun 30
2
ggplot qplot bar removing bars when truncating scale
...le (with bars
removed). How can I get the graph to have the desired 3-6 scale without
removing the bars. Thanks!
#Data
mean=as.numeric(c(5.117647059,5,4.947368421,4.85,4.6875,4.545454545,4.473684211,4.470588235,4.428571429,4.083333333,3.421052632,3.235294118))
data=as.data.frame(cbind(mean,c("Achievement","Achievement","Achievement","Impact","Achievement","Achievement","Achievement","Impact","Impact","Impact","Impact","Impact"),c("Update
knowledge and skills","Meet...
2010 Dec 08
1
Formatting 'names.arg' in barplot
...'m after. I
could switch to ?text or ?mtext, but thought for positioning purposes it
would be easier to do it with names.arg in the barplot function call.
Thanks,
Eric
base.dat.sel2<-read.table(textConnection("base.dat.Covariate
base.dat.US.Number.Observations
base.dat.US.Num.Obs.to.Achieve.Starting.Residual
base.dat.US.Percent.Reduction.in.EM38.Surveys
base.dat.DS.Number.Observations
base.dat.DS.Num.Obs.to.Achieve.Starting.Residual
base.dat.DS.Percent.Reduction.in.EM38.Surveys
Baseline 391 391 NA 281 281 NA
WTD 391 315 0.194 281 210 0.253
ECgw 391 362 0.074 281 280 0.004
SM 391 3...
2017 Nov 28
2
Publication LLVM Related Publications Submission
...ts.
Thank you,
Mihail
Popov
-----------------------------------------------------------------------------------
PAPERS
SUMMARY:
Piecewise Holistic Autotuning of Compiler and Runtime
Parameters
Abstract. Current architecture complexity requires fine
tuning of compiler
and runtime parameters to achieve full potential
performance. Autotuning
substantially improves default parameters in
many scenarios
but it is a costly process requiring a long iterative
evaluation.
We propose an automatic piecewise autotuner based on CERE
(Codelet
Extractor and REplayer). CERE decomposes applications into
small...
2019 Sep 27
2
lmtp and virtual users
Good afternoon.
I have dovecot setup to authenticate virtual users using either gssapi
or doind a bind to an ldap server to achieve a single sign on capable
imap server connected to a samba active directory DC. What I am also
trying to achieve is to have dovecot's lmtp daemon handle the mails
passed from postfix. However, the only way I've gotten this to work is
setting allow_all_users = yes in the userdb but this caus...
2006 Jun 20
0
Achieve pure object oriented design in Ruby (also posted on Ruby List)
Hi,
I have 3 classes A, B and C; I want to achieve following behavior (I am
calling it "pure object oriented designing") with them.
1. An instance of Class C should not exist without instance of Class
B and instance of Class B should not exist without instance of Class A.
2. Class A should be the only class accessible ext...
2007 Jan 24
2
Thoughput
Hi,
I am after a feel of the throughput capabilities for TC and Iptables in
comparison to dedicated hardware. I have heard talk about 1Gb+ throughput
with minimal performance impact using 50ish TC rules and 100+ Iptables
rules.
Is there anyone here running large throughput / large configurations, and if
so, what sort of figures?
Regards
Dan
2013 Mar 14
2
HOw to achieve big vector times big dataframe in R?
.....
dataframe b with dim 908X150
1 1 1 1.....
2 2 2 2
3 3 3 3
4 4 4 4
................
final result I want is the vector with length 908:
A*1+B*1+C*1+D*1+.....
A*2+B*2+C*2+D*2+.....
A*3+B*3+C*3+D*3+.....
A*4+B*4+C*4+D*4+.....
....
because of too large dimension, how can I achieve this in R? Thanks.
Kind Regards,
Tammy
[[alternative HTML version deleted]]
2006 Jan 14
2
slow read IO in domU
...for blocks read/written per second),
dd''s reported speed, etc. both dom0 and domU are allocated 512MB of RAM, so
reading the 1GB file should not benefit from caching.
dd bs=1000000 count=1000 if=/dev/zero of=junk
(sync, wait, etc)
dd bs=1000000 count=1000 of=/dev/zero if=junk
In dom0, I achieve 45MB/s write speed and 63MB/s read speed reasonably
consistently. I guess this should be reasonable speeds for a partition on
LVM on linux software raid 0 on a pair of SATA drives near the front of the
disk. This speed was observed using dd output as well as dom0 vmstat.
In domU, I achieve also...
2018 Jan 30
0
Publication LLVM Related Publications Submission
...----------------------------------------------------------------------------
>
> PAPERS SUMMARY:
>
> Piecewise Holistic Autotuning of Compiler and Runtime Parameters
>
> Abstract. Current architecture complexity requires fine tuning of
> compiler
> and runtime parameters to achieve full potential performance. Autotuning
> substantially improves default parameters in many scenarios
> but it is a costly process requiring a long iterative evaluation.
> We propose an automatic piecewise autotuner based on CERE (Codelet
> Extractor and REplayer). CERE decomposes appli...
2012 Dec 10
1
Can somebody suggest how to achieve following data manipulation?
...ore the 2nd column of 'ResultMat' will
have the element as 9 and so on.
I need to adopt above filling policy for arbitrary 'CutOffDate'.
Ofcourse this can be implemented using a 'for' loop. However I believe
there is some better R-way to do that.
Can somebody help me to achieve that?
Thanks and regards,
2018 Aug 12
3
substitute() on arguments in ellipsis ("dot dot dot")?
Hi. For any number of *known* arguments, we can do:
one <- function(a) list(a = substitute(a))
two <- function(a, b) list(a = substitute(a), b = substitute(b))
and so on. But how do I achieve the same when I have:
dots <- function(...) list(???)
I want to implement this such that I can do:
> exprs <- dots(1+2)
> str(exprs)
List of 1
$ : language 1 + 2
as well as:
> exprs <- dots(1+2, "a", rnorm(3))
> str(exprs)
List of 3
$ : language 1 + 2
$ : chr...
2012 Feb 01
4
gtar compression achieved
Hey folks,
I looked at the man page and don't see any way to do this - maybe it is a
function of the compression program used I dunno.
Is there any way to get gtar to report on the compression it achieved?
I can't just check file sizes because I'm writing data to tape.
The basic problem is that I know how much data is there to begin with but I
don't know how much room it took up on the tape so I have no idea how much
room is left on the tape.
thanks,
-Alan
--
?Don't eat anythi...
2013 Mar 11
1
Use pcls in "mgcv" package to achieve constrained cubic spline
Hello everyone,
Dr. wood told me that I can adapting his example to force cubic spline to pass through certain point.
I still have no idea how to achieve this. Suppose we want to force the cubic spline to pass (1,1), how can
I achieve this by adapting the following code?
# Penalized example: monotonic penalized regression spline .....
# Generate data from a monotonic truth.
x<-runif(100)*4-1;x<-sort(x);
f<-exp(4*x)/(1+exp(4*x));y<-f+r...
2015 May 19
1
Can't achieve alias working with SQL
Hi,
Le 19/05/2015 14:54, Jorge Bastos a ?crit :
> Hi Samuel,
>
>> On a fresh install of Jessie, I achieve to make dovecot/postfix working
>> with SQL, but I still can't send email to alias for wich one I get :
>> "Unknown user"
>>
>> After debug enable in dovecot, I see that the user_query SQL , just
>> query for the "users" table and not the "...
2010 Oct 01
1
[Help]:How to use "loop" to achieve this aim?
...=250)
...
...
>write.table(frameschr2.frame500.step250, file="frames.chr2.meth.txt",
sep="\T", quote=F, col.names=T, row.names=F)
so, how to make this process automatic and fast?
Thanks~
--
View this message in context: http://r.789695.n4.nabble.com/Help-How-to-use-loop-to-achieve-this-aim-tp2819894p2819894.html
Sent from the R help mailing list archive at Nabble.com.
2020 Aug 14
2
Teo En Ming's Learning Achievements on 14 August 2020 Friday
Subject: Teo En Ming's Learning Achievements on 14 August 2020 Friday
[1] Activate Cisco AnyConnect SSL VPN License on Cisco ASA 5506-X
Firewall
Today I discovered that the base license for Cisco ASA 5506-X Firewall
only allows maximum 2 SSL VPN users. I had to login to
https://www.cisco.com/go/license, assign the PAK/token to the...
2017 Jan 17
2
[RFC] IR-level Region Annotations
...he following question.Does the intrinsic or the instruction returning a token type object act as a code motion barrier? In other words, does it prevent other operations from being reordered with it?If the answer is no, then does it mean the intrinsic has to be marked with the convergent property to achieve the code motion barrier effect?If yes, can someone explain how is that achieved in llvm?
Greatly appreciated. Thanks.
Wael
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170117/5ecd48ad/attachment.html>
2010 Jun 22
1
How to implement a user score by activity
Hello everyone, I gotta start an app that have to give icons to users
conform they use the application. For example, a user has bought 10
products so he gets icons symbolizing his activity. A user who has
bought 5 items has 2 icons and a user who bought 15 has more. The more
the use the app, the more the icons they get. My doubt is, how to
implement this? Does anyone have a solution, I
2009 Nov 19
5
Accessing list names in lapply
...109 1.243 0.627 -2.343 -6.071 ...
#...
par(mfcol=c(5,2))
lapply(df1, plot)
This plots each element of the list, but the label on the vertical axis is
X[[0L]] (as expected from the documentation in ?lapply). I'd like the
heading for each plot to be the name of that item in the list. This can be
achieved by using a for-loop:
for (i in names(df1)) plot(df1[[i]], ylab=i)
but can it somehow be achieved bu using lapply? I would be hoping for
something like
lapply(df1, function(x) plot(x, ylab=parent.index()))
or some way to parse the index number out of the call, using match.call()
or something l...