Displaying 20 results from an estimated 600 matches similar to: "Package ICSNP"
2007 May 16
0
new packages 'ICS' and 'ICSNP'
Dear R useRs,
The new contributed packages 'ICS' and 'ICSNP' are available on CRAN.
Descriptions:
The 'ICS' package implements the 2 scatter matrix transformation to
obtain an invariant coordinate system or independent components,
depending on the underlying assumptions. The result of the
transformation is an object of the S4 class ics which is provided by
this
2007 May 16
0
new packages 'ICS' and 'ICSNP'
Dear R useRs,
The new contributed packages 'ICS' and 'ICSNP' are available on CRAN.
Descriptions:
The 'ICS' package implements the 2 scatter matrix transformation to
obtain an invariant coordinate system or independent components,
depending on the underlying assumptions. The result of the
transformation is an object of the S4 class ics which is provided by
this
2012 Jan 29
1
hi how to creat pxe support thin clinet in linux
i had rtl 8139d lan card in this l;an card pxe boot is avilable how colud
i do for the linux boot in suse or how colud i creat pxe server on suse or
any linux
pls
i am new person in this field thanking you
2008 Mar 16
1
stats/debugging question hotelling t-sq
Hi
I spent hours looking over my formula. Somehow I cant find the reason
why it gives me different answer.
help appreciated.
x = as.matrix(read.table("http://www.niehs.nih.gov/research/atniehs/core/microarrays/docs/heinloth.txt",1))
x = t(x) #now rows are subjects, cols are genes
x = x[order(rownames(x)),] #order by treatment group oxygen,
ultra-violet, gamma radiation
y =
2008 Nov 21
3
Chances of running a new game
Is there any chance to running new games under Wine (because I've seen some new videogames running in Youtube) and, what things can be made to try to get those games working.
I don't know much about wine so I don't know how it works but, Colud we make some kind of guide about problems, solutions and wine moddings to encorauge users to get working new games?
2019 Jul 10
1
solr
Hi
I have set up SOLR in accordance with documentation and it runs well.
I use solr like:
.......
fts = solr
fts_solr = debug url=http://IP:8983/solr/ (solr in external machine)
......
Is replication of this system really essential ?? Due to my tests,
rollback of the solr server on external machine lasts less than minute
and it is nearly non-visible from client side.
On the other hand solr
2007 Sep 06
2
Different Networks
I have multiple upstreams in my office. The primary upstream is having some issues with latency\jitter. I want to move the VoIP traffic to another interface.
I have the router set to send all traffic destined for "local" networks out the respective interfaces. Traffic destined to the Internet goes out one of the upstreams.
I can do this on a per-IP basis and have successfully done
2007 May 01
0
BlueZ
Hello all.
Does anyone know how to get bluetooth working on CentOS 5?
I can't pair any device. Things work perfectly on CentOS 4. Here is what
happens:
root at miho ~]# /etc/rc.d/init.d/bluetooth start
Starting Bluetooth services: [ OK ]
[root at miho ~]# hcitool scan
Scanning ...
00:12:EE:XX:XX:XX K750i
[root at miho ~]# hcitool cc
2002 Nov 24
2
windows 9x Cannot find Domain server
Hello,
I running on Solaris, and configured Samba to be a
domain logon server for windows9x boxes. In the dialog
box that appear in the startup, I typed the login name,
the passwd and the domain. Then, it appear the message:
`There is no Domain server to authenticate your password?
Colud someone help me ?
Thanks
Tiago Lopes
the list of the command: testparm -s is here:
Load smb config files
2007 Nov 15
3
RE: configure: error: C compiler cannot create executables
> _____________________________________________
> From: Morimoto, Mark K
> Sent: Thursday, November 15, 2007 11:26 AM
> To: 'samba@lists.samba.org'
> Subject: configure: error: C compiler cannot create executables
>
> Hello,
>
> I get this when I run ./configure. I have searched for other problems
> and others who had the problem say its due to cc
2005 Oct 14
3
zip package
Dear all
I can not understand how to install the package lpsolve_1.1.9.zip
I have read the FAQ and the help pages carefully, but it still not
clear for me.
I have tried the following (and obtained the respective error
messages):
>install.packages("c:/ProgramFiles/R/rw2011/library/lpSolve_1.1.9",destdir="
c:/ProgramFiles/R/rw2011/library/lpSolve")
Mensagem de aviso:
2023 Mar 21
2
[libnbd PATCH v4 0/2] lib/utils: introduce async-signal-safe execvpe()
On Tue, Mar 21, 2023 at 07:04:59AM +0100, Laszlo Ersek wrote:
> On 3/20/23 20:41, Eric Blake wrote:
> > On Sun, Mar 19, 2023 at 10:41:37AM +0100, Laszlo Ersek wrote:
> >> This is version 4 of the following sub-series:
> >>
> >> [libnbd PATCH v3 09/29] lib/utils: introduce async-signal-safe execvpe()
> >> [libnbd PATCH v3 10/29] lib/utils: add unit tests
2008 Oct 30
2
Small modification of zip.file.extract in utils?
Dear list,
I needed to extract a zip-archive, and found zip.file.extract in utils.
My only problem was the use of tempdir(), since I wanted to permanently
extract the archive at a fixed location for later use. My own fix was
simple, adding an extra parameter zipdir (without default), and within
the function change
tmpd <- tempdir()
to
tmpd = ifelse(missing(zipdir),tempdir(),zipdir)
This
2011 Jun 21
5
please help for mgcv package
i read a book from WOOD, there's an example which is talking about the
pollutant.
library(gamair)
library(mgcv)
y<-gam(death~s(time,bs="cr",k=200)+s(pm10median,bs="cr")+s(so2median,bs="cr")+s(o3median,bs="cr")+s(tmpd,bs="cr"),data=chicago,family=Possion)
lag.sum<-function(a,10,11)
{n<-length(a)
b<-rep(0,n-11)
for(i in 0:(11-10))
2003 Sep 19
2
extracting the levels of a subset of data
Hi,
> tmpdata<-subset(myd, TYPE=="A")
> levels(tmpdata$TYPE)
> [1] "A" "B" "C"
I'd like to get only "A" as output...
Thanks for your help
Marc
2004 Dec 31
4
install.packages() for local source file
Wish to install a local source package on Un*x platform from
within R. Same thing as I can accomplish from cmdline as
$ export R_LIBS=~/R/library
$ cd /path/to/pkg
$ R CMD INSTALL -l $R_LIBS <pkgname>
So, how do you go about this anyway?
And isn't this a bug in 'install.packages'?
-------
$ R
R : Copyright 2004, The R Foundation for Statistical Computing
Version 1.9.0
2023 Mar 20
1
[libnbd PATCH v4 0/2] lib/utils: introduce async-signal-safe execvpe()
On Sun, Mar 19, 2023 at 10:41:37AM +0100, Laszlo Ersek wrote:
> This is version 4 of the following sub-series:
>
> [libnbd PATCH v3 09/29] lib/utils: introduce async-signal-safe execvpe()
> [libnbd PATCH v3 10/29] lib/utils: add unit tests for async-signal-safe execvpe()
>
> http://mid.mail-archive.com/20230215141158.2426855-10-lersek at redhat.com
>
2023 Mar 21
2
[libnbd PATCH v4 0/2] lib/utils: introduce async-signal-safe execvpe()
On 3/21/23 15:05, Eric Blake wrote:
> On Tue, Mar 21, 2023 at 07:04:59AM +0100, Laszlo Ersek wrote:
>> On 3/20/23 20:41, Eric Blake wrote:
>>> On Sun, Mar 19, 2023 at 10:41:37AM +0100, Laszlo Ersek wrote:
>>>> This is version 4 of the following sub-series:
>>>>
>>>> [libnbd PATCH v3 09/29] lib/utils: introduce async-signal-safe execvpe()
2023 Mar 22
1
[libnbd PATCH v4 0/2] lib/utils: introduce async-signal-safe execvpe()
On Tue, Mar 21, 2023 at 03:56:22PM +0100, Laszlo Ersek wrote:
> On 3/21/23 15:05, Eric Blake wrote:
> > On Tue, Mar 21, 2023 at 07:04:59AM +0100, Laszlo Ersek wrote:
> >> On 3/20/23 20:41, Eric Blake wrote:
> >>> On Sun, Mar 19, 2023 at 10:41:37AM +0100, Laszlo Ersek wrote:
> >>>> This is version 4 of the following sub-series:
> >>>>
>
2008 Sep 22
0
[LLVMdev] Overzealous PromoteCastOfAllocation
On Sep 13, 2008, at 1:07 PM, Matthijs Kooijman wrote:
> Hi Dan,
>
>> Changing PromoteCastOfAllocation to not replace aggregate allocas
>> with
>> non-aggregate allocas if they have GEP users sounds reasonable to me.
> This sounds reasonable indeed, but still a bit arbitrary. Haven't
> figured out
> anything better yet, though.
>
>> Finding the