Displaying 20 results from an estimated 11307 matches for "higher".
2016 Apr 24
2
How to take a multidimensional data set to higher dimensions using R?
Hi,
I have a multidimensional data-set( multiple 'x' variables with a target
variable). I want to take it to a higher dimensional space so that I can
apply classification technique with ease . Is there a package in R which
would allow me to take these data points from lower dimensional space to
higher dimensions? so that is that higher dimension I can apply
classification techniques to be effective. My datapoints...
2012 Nov 27
3
Problem installing knitr 0.5 or higher in Ubuntu
Hi,
I am using Rstudio in Ubuntu . While installing R from the terminal I got
the version R 2.13.1 .
But the problem is that knitr 0.5 requires higher versions.
So is there any way to get the latest version of R in ubuntu (or 2.13.1 is
the maximum I can get)?
In case the higher R version is not available can anybody please help me how
do I use the "knitr Html" option in R studio.
Thanks in advance.
-Atanu
--
View this messag...
2008 Jul 15
2
meaning of tests presented in anova(ols(...)) {Design package}
...n the discussion?
Compared to the above example, what tests are performed when calling
anova() on this object? Here is the output in R:
Analysis of Variance Response: log(ksat * 60 * 60)
Factor d.f. Partial SS MS F
sar (Factor+Higher Order Factors) 4 168.43 42.11 27.0
All Interactions 3 142.13 47.38 30.4
activity (Factor+Higher Order Factors) 6 536.84 89.47 57.3
All Interactions 3 142.13 47.38 30.4
Nonlinear (Fac...
2009 Jan 23
0
[LLVMdev] Possible bug in PassManager - Higher pass requires lower pass
Hello all,
I've noticed that whenever a ``higher'' pass requires a ``lower''
pass, an assert *always* fails in the pass manager. I believe the
correct behavior is to not schedule the lower pass, but instead run it
when the higher pass calls getAnalysis<>(). Consider, for instance,
this test case:
#include "llvm/Pass....
2009 Feb 17
1
Processing a list of fit objects
Hi, I have a list of fit objects (fit objects from HMISC functions)
I create elements in the list in this way
lrm.sumtot <- lrm( ae7bepn ~ trarm + sumtot , data=sd.fix)
lrm.list[['lrm.sumtot']] <- lrm.sumtot
And I can run (anova(lrm.sumtot))
The following also gives the anova I'd expect
zz <- lrm.list[['lrm.sumtot']];anova(zz)
And similarly for the summary
2013 Jul 03
2
NHW Image codec - higher quality settings
Hello,
Just a very quick message to let you know that I have added a higher
quality setting (-h2, +10Ko) and I have added now residual coding on the
512x256 wavelet image for the higher settings.Precision is a little
better.-I also still apply the post-processing function on the 512x256
wavelet image for now.-
Here is the link for the binaries (as I can not link them in m...
2006 Aug 14
1
mtext uses the typographical descender to align text
<>
Hello
One sometimes (quite often really ) marvel at the choice of defaults in
R's graphic engine.
For some obscure reason, mtext uses the typographical descender (bottom
of letters) to align text. That is: "gG" will end up slightly higher
that "GG". Depending on the font, "Q" might end up higher than "O".
(for explanation of baseline & descender see:
http://www.paratype.com/help/term/terms.asp?code=88)
Example:
y1 <- rnorm(30)
y2 <- rnorm(30)
group <- as.factor(rep(1:6, each=10))
y <...
2010 Sep 09
2
set lockedmem to higher value?
We have some ORACLE PGA problem and ORACLE document say we can serup lockmem(Max lock memory) to higher value.
$ulimit -a
time(cpu-seconds) unlimited
file(blocks) unlimited
coredump(blocks) 0
data(kbytes) unlimited
stack(kbytes) 10240
lockedmem(kbytes) 3145728
memory(kbytes) unlimited
nofiles(descriptors) 65536
processes 2047
Can anyone tell me how to set lockedmem to higher value on CEN...
2011 Jun 25
3
Jumbo Frame performance or lackof?
After successfully getting higher MTU to work on my Realtek NICs, I
started testing the impact of higher MTU on file transfers using NFS
exported ramdisk to ramdisk.
The results were unexpected. The higher the MTU on the sending NIC,
the lower the file transfer speed. I tested by using time cp to copy a
1GB file (In case compressi...
2019 Mar 28
2
Higher level program analysis
...r LLVM IR is too low-level to make such analysis. So, I using
call graph representation of module. I figured out the probability of
function which execute next based on the branch predictor, Call
instruction distance from the entry of function. I believe that many
attributes can be derived from higher level program representation. Is
there any similar work done like this? LLVM already support analysis for
this?
--
Have a great day!
PreeJackie
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190328/625a...
2018 Dec 01
1
In centos, how to switch to default gcc after switched to a higher version of gcc with devtoolset.
I want to install several gcc with different versions in centos. The default version of gcc in centos6 is 4.9.3. So I use devtoolset install a higher version of gcc. Then I switch to the higher version of gcc by executing "source /opt/rh/devtoolset-5/enable". But now if I want to switch back to the default gcc, how should I do?
By the way, is there any solution to install multiple gcc with different versions in centos 5?
2003 Aug 04
3
Breusch-Godfrey Test
> Dear R Helpers!
>
> bgtest{lmtest} performs the Breusch-Godfrey test for higher
> order serial
> correlation.
>
> Is the Higher Order Correlation function already programmed in
> R I couldn't find it?
>
> Sergei Petrov
>
?acf
?pacf
HTH,
Bernhard
----------------------------------------------------------------------
If you have received thi...
2010 Jul 29
2
how to get higher derivatives with "deriv"
...have trouble implementing a function which computes the k-th derivative of a specified function f and returns it as a function. I tried to adapt what I found under ?deriv but could not get it to work. Here is how it should look like:
## specify the function
f <- function (x,alpha) x^alpha
## higher derivatives
DD <- function(expr, variable, order = 1) {
if(order < 1) stop("'order' must be >= 1")
if(order == 1) deriv(expr, variable)
else DD(deriv(expr, variable), variable, order - 1)
}
## compute the second derivative of f
f.prime.prime <- DD(f,"x&q...
2008 Feb 14
2
[LLVMdev] Higher-level OCaml bindings
...it LLVM's awesome JIT
compilation capabilities from OCaml. Although I've managed to get minimal
compilers up and running with relatively little effort, I can't help but
think that I'm spending a significant amount of time reinventing the C
front-end.
Would it make sense to have higher-level OCaml bindings to the current CLang
front-end to make code generation even easier?
Does CLang use a suitable intermediate representation for this to be possible?
Just an idea...
--
Dr Jon D Harrop, Flying Frog Consultancy Ltd.
http://www.ffconsultancy.com/products/?e
2005 Jul 29
1
corrupted binary tree and index data files
...bian testing. I have searched the
archives of this list and have seen other evidence of the problems I am
having. I get lots of log messages like these:
Jul 29 07:47:09 HOST imap(USER): Corrupted binary tree file /home/USER/IMAP_MBOX_DIR/.imap/INBOX/.imap.index.tree: UID to be inserted isn't higher than existing (290 <= 291)
...
Jul 29 07:47:13 HOST imap(USER): Corrupted index data file /home/USER/IMAP_MBOX_DIR/.imap/INBOX/.imap.index.data: Field 1 size points outside file (14648 / 14656) for record 290
This is from the midst of a herd of messages starting at 82 <= 144:
Jul 28 08:01:3...
2003 Dec 11
2
FAX application does not work for me....
...R8x7.7lines/mm and/or 200x200pels/25.4mm OK
2D coding OK
Scan line length: 215mm
Recording length: A4 (297mm)
Receiver's minimum scan line time: 0ms at 3.85 l/mm: T7.7 = T3.85
R8x15.4lines/mm OK
Inch-based resolution preferred: no
Metric-based resolution preferred: no
Minimum scan line time for higher resolutions: T15.4 = T7.7
>>> DIS: 80 00 c6 f0 80 80 01
HDLC underflow in state 9
Changed from phase 4 to 3
T4 timeout in state 9
Changed from phase 3 to 4
Sending ident
>>> CSI: 40 38 37 36 35 34 33 32 31 20 20 20 20 20 20 20 20 20 20 20 20
DIS:
Store and forward Internet fax: no...
2007 Feb 13
2
.NET version 1.1 or higher (ComGenius followup)
Hi there,
I almost have the ComGenius app running now!
I "just" need .NET Framework version 1.1 or higher installed!
Where do I get it, and how do I install it?
Thank you!
/Daniel
2012 Jan 03
1
higher derivatives using deriv
...iv info or any other
documentation on deriv for that matter:
deriv(expr, namevec, function.arg = NULL, tag = ".expr", hessian = FALSE,
...)
This doesn't seem to include an "order of derivative" argument, in fact, in
the examples section,
it is outlined, how one can build a higher deriv. function oneself...
Any hints are much appreciated!
alex
--
View this message in context: http://r.789695.n4.nabble.com/higher-derivatives-using-deriv-tp4256118p4256118.html
Sent from the R help mailing list archive at Nabble.com.
2006 Dec 21
2
ghost 8.x and newer
Hi all,
I love syslinux!! It works great.
Problem. GHost 8.x and higher... With ghost 7.5 and earlier I was able to
boot floppy images from my tftp server.
But as you all know Ghost 8.x and higher had a bloated ghost.exe that does
not fit on a single 1.44mb floopy image file.
Has any one had any luck in getting ghost 8.x and higher to work with
syslinux and memdisk?...
2005 Oct 28
2
To CELP or not to CELP ... at higher bitrates
...at all parties will always have access to broadband-scale
connectivity, does using a CELP-based codec such as Speex make the most
sense in this application?
I would be running Speex in ultra-wideband with 32 or 48 kHz sampling and
its bitrate completely open-ended and upwards of 44 kbps ... but higher bit
rates (of several hundred kbps) would also be readily available to this
application.
Given that we really don't need the compression levels offered by advanced
CELP speech encoding, does it still make the most sense to use Speex, or
would we be better served to use some other codec --...