similar to: *s behaviour (PR#6633)

Displaying 20 results from an estimated 4000 matches similar to: "*s behaviour (PR#6633)"

2010 Dec 09
4
String to array
Hello, how convert x in xarray (numbers)? > x [1] "0 - 13" > y [1] "11 - 23" > z [1] "220 - 9" > xarray [1] 0 13 > yarray [1] 11 23 > zarray [1] 220 9 Thanks, RMB
2007 Apr 25
2
Having trouble with FreeNX, Need help to make it work perfectly
Hi thanks for the reply i am really grateful if you can tell me how to make FreeNX work like charm. I am really stuck with it, and after reinstalling the server is definitely pissing off my boss. Please help me thanks. =========================== Please let me review how my FreeNX was screwed up. After i fresh install my CentOS 5, I 'yum install freenx' and so if i am not wrong I
2010 Sep 18
3
NX and CentOS 5.5?
I am pulling my hair out here folks...... ? I am running CentOS 5.5 in command line only.? Reason being I am standing up an IDS system on it.? ? I have installed the NX client/node and server pkgs.? I have installed the NX client for windows on a Vista box.?? When I attemtp to connect from the Vista to CentOS, I get this: ? NX> 203 NXSSH running with pid: 22080 NX> 285 Enabling check on
2002 Nov 21
3
Tribes 1.x & Wine
Has anyone ever tried to actually get a tribes server running under wine or another emulator? Just the other day i was setting up a linux counter-strike server. My friend asked me if i would setup a Tribes 1.0 or 1.11 server. I thought linux would be a great way to do it. I was trying to run a headless / dedicated starsiege tribes server (1.0/1.11) I Installed the tribes files (including the
2005 Dec 28
2
cant get X on domainU
Hello I can''t seem to be able to get X working on domain U My setup domain0 -ubuntu breezy domainU -ubuntu breezy I tried 3 techniques 1. ssh -X domainU steps: on domain U $ export DISPLAY=:0 $ xhost + xhost: unable to open display ":0" on domain0 ssh -X domainU result: ssh conection established no X forwarding starts. after login tried
2010 Aug 15
4
FreeNx doesn't work?
I have installed freenx with this article http://wiki.centos.org/HowTos/FreeNX but when I use freenx-client on windows to connect to server, I always get an "freenx Authentication failed." client err log output as this: NX> 203 NXSSH running with pid: 1584 NX> 285 Enabling check on switch command NX> 285 Enabling skip of SSH config files NX> 285 Setting the preferred NX
2013 Apr 03
6
freenx not working with newly installed centos 6.4
hi, this is not the same as http://bugs.centos.org/view.php?id=6298 I can login with ssh but not with freenx With 6.3 this worked, I just spinned some new servers and now I can no longer use freenx. in /var/log/messages: pr 3 22:05:11 testthuis nxserver[3435]: (nx) Failed login for user=admin from IP=192.168.0.160 Apr 3 22:06:01 testthuis nxserver[3619]: (nx) Failed login for user=admin
2007 Dec 11
1
R computing speed
Dear helpers, I am using R version 2.5.1 to estimate a multinomial logit model using my own maximum likelihood function (I work with share data and the default function of R cannot deal with that). However, the computer (I have an Athlon XP 3200+ with 512 GB ram) takes quite a while to estimate the model. With 3 categories, 5 explanatory variables and roughly 5000 observations it takes 2-3 min.
2008 May 20
4
Can't get past the splash screen
Hi, I have a remote frontend (it's kept in the room which I don't have access) which is installed with CentOS 4 and Rocks . So, to use the desktop(Gnome) of the frontend I use the freenx + nomachine following the guide in http://www.centos.org/modules/newbb/viewtopic.php?forum=20&topic_id=1640&viewmode=threaded. It worked. Then, I intended to add user, but I couldn't create the
2011 Dec 15
2
lm and R-squared (newbie)
Hello, I've two data.frames (data1 and data4), dec="." and sep=";". http://r.789695.n4.nabble.com/file/n4199964/data1.txt data1.txt http://r.789695.n4.nabble.com/file/n4199964/data4.txt data4.txt When I do plot(data1$nx,data1$ny, col="red") points(data4$nx,data4$ny, col="blue") , results seem very similar (at least to me) but the R-squared of
2010 Oct 01
1
colored rasterImage()
Hello, I have been exploring the possibility to transition some code that currently uses image() to use the new rasterImage(). To date, I haven't been able to specify a color look-up strategy that works. For example... nx <- 100 ny <- 100 m <- matrix(data = rep(seq(0,1, length = nx), ny), ncol = nx, nrow = ny, byrow = TRUE) plot(1:nx, 1:ny, type = "n") my.color
2006 May 14
1
Dragable element
Hey all Im having a problem... Ok, this is the situation... I have a small product image, on which ive floated a div over it, and defined it as draggable. Now, this works, and i can drag it around no problem. great. but then, what i want to do is, based on the location of that dragable element from the top and the left, to move (using the Effect.MoveBy method) a larger image - so effective
2008 Jun 16
1
Error in maximum likelihood estimation.
Dear UseRs, I wrote the following function to use MLE. --------------------------------------------- mlog <- function(theta, nx = 1, nz = 1, dt){ beta <- matrix(theta[1:(nx+1)], ncol = 1) delta <- matrix(theta[(nx+2):(nx+nz+1)], ncol = 1) sigma2 <- theta[nx+nz+2] gamma <- theta[nx+nz+3] y <- as.matrix(dt[, 1], ncol = 1) x <- as.matrix(data.frame(1,
2007 Oct 21
2
new freenx and nx RPMS released, manual action for x86_64
There are new RPMS released for nx and freenx in the CentOS-4 and CentOS-5 Extras repository. I normally do not announce that here, as those can easily be obtained on a normal "yum upgrade/update", however in this case there are special actions required *_IF_* you have the x86_64 architecture for either CentOS-4 or CentOS-5 with the current versions of nx and freenx installed. The
2008 Nov 19
1
more efficient small subsets from moderate vectors?
This creates a named vector of length nx, then repeatedly draws a single sample from it. lkup <- function(nx, m=10000L) { tbl <- seq_len(nx) names(tbl) <- as.character(tbl) v <- sample(names(tbl), m, replace=TRUE) system.time(for(k in v) tbl[k], gcFirst=TRUE) } There is an abrupt performance degredation at nx=1000 > lkup(1000) user system elapsed 0.180
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 =
2009 Apr 19
1
rpmbuild failure
I'm trying to rebuild nx-3.2.0-8.el5.centos.src.rpm from the extras repo. It works on a machine running 5.1, but fails on another running 5.3. The working machine is arch=x86_64, the other i386. The strange bit is the line rpmbuild complains about: it's the last line in the spec file, at the end of the %changelog section: [...] Processing files: nx-debuginfo-3.2.0-8 Finding Provides:
2006 Jan 23
2
freenx
installed freenx server on CentOS 4 server installed nxclient from nomachine.com on workstation so far so good. following directions from web site... http://fedoranews.org/contributors/rick_stout/freenx/ where I tried both /etc/nxserver/client/client.id_dsa.key and /var/lib/nxserver/home/.ssh/client.id_dsa.key copied them to my workstation and then used the 'import' function in
2007 Aug 24
2
NX on 4.5 vs 5.0
NX connections to my 4.5 server give "cramped" looking fonts (as if the resolution were wrong). Connections to my 5.0 server look great regardless of the resolution. Both use GNOME. Is there anything I can do to the 4.5 servers to increase the quality of the NX connections? Thanks, Scott
2004 Feb 14
6
Beginner's question about t.test()
Dear All, I am doing some exercise in statistics textbook on comparison of two experimental means. Is it possible to use t.test() do t-test when I have only two means, sample size, two standard deviations ? (no raw data). Thanks. Pramote