similar to: help

Displaying 20 results from an estimated 600000 matches similar to: "help"

2002 Jun 20
2
Printer Errors with 3.0 Alpha 17
I'm testing Samba 3.0 Alpha 17 on Suse 8.0 (but on the 7.3 is the same). I'm shared all the printers of the server for all the users of the domain, but the clients keep the two following messagges: 1. "Not eought memory to execute the command" 2. "Bad printer name" If I try to connect from DOS I got no problem, and I print good. Somebody got any idea? the patch for the
2005 Nov 17
3
Can't set ACL on Samba
Hi everybody, i'm getting mad configuring samba to join an ADS, resolve domain users and groups and set ACLs via windows explorer on a share mounted with POSIX ACL and extended attributes. At the point where i am, i've managed to get Samba join correctly the domain with idmap_rid backend working fine. I can correctly set (add, remove, modify) file acls and extended attributes
2007 Feb 09
2
get.hist.quote problem yahoo
I have functions using get.hist.quote() from library tseries. It seems that something changed (yahoo) and function get broken. try with a simple get.hist.quote('IBM') and let me kow if for someone it is still working. I get this error: Error in if (!quiet && dat[n] != start) cat(format(dat[n], "time series starts %Y-%m-%d\n")) : missing value where
2010 Jan 26
6
Help
> Dear All > > I have data as follows. > > D T M L > 0.20 1 03 141 > 0.32 1 07 62 > 0.50 1 05 49 > 0.80 1 04 46 > 0.20 2 14 130 > 0.32 2 17 52 > 0.50 2 13 41 > 0.80 2 14 36 > 0.20 3 24 120 > 0.32
2000 Feb 13
0
WINS misery.. please help :(
I have been trying all day to make WINS work for me, unsuccessfully. I have a rather complex setup, that works fine over a LAN, WINS and all. However, the LAN was a substitution for the internet, and when the setup is moved to the real internet, the WINS aspect of my setup does not work. I need some information about WINS over different subnets. I have two machines both running linux +
2005 Mar 08
1
Help with multiple subnets
I have two subnets in may LAN 192.168.0.0/24 and 192.168.1.0/24. Both subnets go out to the Internet through a Linux box acting as a gateway, so the gateway has one interface in each subnet (192.168.1.1 and 192.168.0.1). In both subnets I have Windows and Linux machines and I want to configure SMB networking using a workgroup (not a domain), so one workgroup for more than one subnet. I know that
2005 Mar 20
0
rpcclient adddriver command results in 'WERR_BADFILE'
I wonder if someone could help me with this problem I am getting. I have been trying to get printer drivers installed onto my Samba server (v3.0.10 FC3) for a few days now and have finally hit this problem which I cannot fathom. I run this command to copy the drivers from w32x86 into the '3' directory: rpcclient -U'root' -c 'adddriver "Windows NT x86" \
2004 Feb 27
0
Réf. : Trouble with install, still--please help
Hi These files are the samba daemon ! > usr/local/samba/sbin/nmbd > usr/local/samba/sbin/smbd > usr/local/samba/sbin/swat > usr/local/samba/sbin/winbindd You must create the smb.conf in /usr/local/samba/lib. ----------------------------------- St?phane PURNELLE stephane.purnelle@corman.be Service Informatique Corman S.A. Tel : 00 32
2005 Jun 07
0
Help with possible bug (assigning NA value to data.frame)?
This 'strange behaviour' manifest itself within some quite complex code. When I created a *very* simple example the behaviour dissapeared. Here is the simplest version I have found which still causes the strange behaviour (it could be quite unrelated to the boot library, however). library(boot) ## boot statistic function my.mean.s <- function(data,subset){ mean(data[subset]) }
2001 Jan 17
3
Pattern Matching help
Thanks in advance for any help I can get on this. I'm trying to change variable names between 2 systems - R and old SPSS, Oracle. I'm using the grep() and gsub() commands but I'm getting the following result - > test.dat <- c("a", "b.c", "d.e.f", "p_q,r") > test.dat [1] "a" "b.c" "d.e.f"
2009 Sep 18
1
Help a newbie
Hello, To me as a beginner, every problem looks big. Below is what I was asked to do as part of a code that will solve my problem. I have used read.table to read my data into R and assigned the column names with colnames(dat)<- ... . But to go from txt<-" to the last " at the bottom of the table below is what I am unable to do. Could anybody please tell me how to type or arrive at
2010 Sep 16
1
Help for an absolutely r-noob
Hello together, I am an absolute noob in R and therefore I need help urgently. I have received a script from my tutor with plot functions in it. However, I can' manage to adapt these plots. The hole script is as follows: setwd("E:/") ##### (1) Read data ### dat <- read.table("Komfort_Tatsaechliche_ID_Versuchsreihe_1.txt", header=TRUE, sep="\t",
2009 Sep 04
2
help with functions
Hi all, I have got 2 function (see bellow) which are simplifications of what I need to do. These functions are precisely the same, except for the last line. My question is, why doesn't function testA work in the same way as function testB. Both functions produce two objects, "a" and "b" that must merged with rbind. The difference is that in testA, I specify the name
2007 May 23
2
Fisher's r to z' transformation - help needed
I am trying to use Fisher's z' transformation of the Pearson's r but the standard error does not appear to be correct. I have simulated an example using the R code below. The z' data appears to have a reasonably normal distribution but the standard error given by the formula 1/sqrt(N-3) (from http://davidmlane.com/hyperstat/A98696.html) gives a different results than sd(z). Can
2012 Oct 21
2
help speeding up simple Theil regression function
Hello, I am working on a simple non-parametric (Theil) regression function and and am following Hollander and Wolfe 1999 text. I would like some help making my function faster. I have compared with pre-packaged version from "MBLM", which isnt very fast either, but it appears mine is faster with N = 1000 (see results below). I plan on running this function repeatedly, and I generally
2010 Mar 30
2
Need help to split a given matrix is a "sequential" way
I need to split a given matrix in a sequential order. Let my matrix is : > dat <- cbind(sample(c(100,200), 10, T), sample(c(50,100, 150, 180), 10, > T), sample(seq(20, 200, by=20), 10, T)); dat [,1] [,2] [,3] [1,] 200 100 80 [2,] 100 180 80 [3,] 200 150 180 [4,] 200 50 140 [5,] 100 150 60 [6,] 100 50 60 [7,] 100 100 100 [8,] 200 150 100 [9,]
2024 Jul 25
1
please help generate a square correlation matrix
Hi R users, I generated a square correlation matrix for the dat dataframe below; dat<-data.frame(g1=c(1,0,0,1,1,1,0,0,0), g2=c(0,1,0,1,0,1,1,0,0), g3=c(1,1,0,0,0,1,0,0,0), g4=c(0,1,0,1,1,1,1,1,0)) library("Hmisc") dat.rcorr = rcorr(as.matrix(dat)) dat.r <-round(dat.rcorr$r,2) however, I want to modify this correlation calculation;
2013 Jan 31
2
Help with multiple barplots
Hello: I need to create a six barplots from data that looks pretty close to what appears below. There are two grouping variables (age and gender) and three dependent variables for each grouping variables. I'm not really familiar with trellis graphics, perhaps there is something that can do what I need there, i don't know. The thing is: I *need* these to appear on one row, with some way
2017 Sep 27
1
Need Help in Debugging
I am getting following error when running this script :------------Error in length(runsum) : object 'runsum' not found ##error function dat$fit <- NULL dat$fit[dat$majorlandmarks] <- dat$Close[dat$majorlandmarks] run <- rle(dat$majorlandmarks) runvalue <- run$values runsum <- cumsum(run$lengths) run <- run$lengths for(i in 1:(length(runsum)-1)){ if
2024 Jul 25
1
please help generate a square correlation matrix
?s 17:39 de 25/07/2024, Yuan Chun Ding via R-help escreveu: > Hi R users, > > I generated a square correlation matrix for the dat dataframe below; > dat<-data.frame(g1=c(1,0,0,1,1,1,0,0,0), > g2=c(0,1,0,1,0,1,1,0,0), > g3=c(1,1,0,0,0,1,0,0,0), > g4=c(0,1,0,1,1,1,1,1,0)) > library("Hmisc") > dat.rcorr =