similar to: Incomplete backups with tar option of smbclient.

Displaying 20 results from an estimated 200 matches similar to: "Incomplete backups with tar option of smbclient."

2012 Oct 22
1
Matlab code to R code
Dear r-users, I would like to convert my Matlab code to R-code, however it dies not work as expected.  Hope somebody can help me to match Matlab and r codes. R code: rr <- function(r,cxn) { tol <- 1E-4; for(i in 1:n) { t1 <- (1+(i-1)*r)*log((1+(i-1)*r)) t2 <- (i-1)*(1-r)*log(1-r) rri <- ((t1+t2)/i*log(i))-cxn rr <- rri > tol } round(rr,4) } rr1 <- rr(0.5,0.0242) ; rr1
2005 May 26
1
Chi Square Test on two groups of variables
Dear R help I have been trying to conduct a chi square test on two groups of variables to test whether there is any relationship between the two sets of variables chisq.test(oxygen, train) Pearson's Chi-squared test data: oxygen X-squared = 26.6576, df = 128, p-value = 1 > chisq.test(oxygen) Pearson's Chi-squared test data: oxygen X-squared = 26.6576, df = 128,
2005 Feb 02
1
FW: Document1
> -----Original Message----- > From: Brett Stansfield > Sent: Wednesday, 19 January 2005 4:25 p.m. > To: 'S.Ganesh at massey.ac.nz' > Subject: Document1 > > <<Doc1.doc>> I was trying to get R to analyse one variable of the file > Chicken Weight. when I ask > > hist(data$weight) > R says "x must be numeric" > yet when I
1998 May 11
1
SAMBA-NTDOM
Hi I'm becoming a bit confused. I have been trying out the Samba PDC code from BRANCH_NTDOM on Solaris 2.5.1 (with great success !). I now want to download the latest version and messages on the samba-ntdom list say to download from the main branch. What exactly do I put in my cvs command ? The NTDOM FAQ says 'cvs -d :pserver:cvs@samba.anu.edu.au:/cvsroot co samba '. When I do
2004 Aug 03
1
smbpasswd error
Hi Samba people I saw this as a problem in the archives about a month ago but no solution ? I'm running samba 2.2.10 on Solaris 8. We have a script to replace /usr/bin/passwd which changes the NIS passwd and then uses smbpasswd to change the user's smb password to the same thing. Some users are getting : NIS password changed for diane on cauchy machine 127.0.0.1 rejected the password
2005 May 30
1
Joining Sun NAS to samba domain
Hi I have successfully joined my Sun NAS device to my Samba PDC (version 2.2.10, security=user, encrypt passwords=yes) However, when I try to map a drive to \\nas\home it wont accept my (correct) password and the NAS log says : NetrSamlogon[BIOSS\janet]: SAMBA_ACCESS_DENIED (Samba PDC) Have I missed something ? Do I have to set up a trust account or is it to do with encrypted passwords ? --
2004 Oct 23
0
(PR#7309) misuse of R-bugs (was inappropriate definition
>From the R FAQ Bug reports on contributed packages should be sent first to the package maintainer, and only submitted to the R-bugs repository by package maintainers, mentioning the package in the subject line. and you are NOT the listed maintainer. Do learn to read FAQs before causing unnecessary work for other people (as the R posting guide asks). Please do as the FAQ asks. On
1998 Jul 23
0
netlogon shares
Hi I have a Samba server running 1.9.18p7 on a Solaris 2.5 machine. It is set up with a netlogon share. I have 4 Win95 PCs for which I have created identical <machinename>.bat files in the netlogon directory. However, only one of those PCs is running the 'root preexec' script and running the commands in %m.bat. Anyone have any idea why ? I've appended the global and netlogon
1998 Dec 08
2
hosts.allow
Hi If I add a specific machine to my hosts allow list in the global section of my smb.conf, then that machine can access any of the shares on that server. If I only add the machine to a hosts allow list in a specific share, when I try and connect to that share from that machine I get an error : 'Specified computer did not recieve your request' and in log.smb : 'Connection denied from
2005 Jun 22
0
Samba and Sun StorEdge NAS
Hi I managed to get my Sun NAS filer to join my Samba domain (2.2.10). However, I cannot mount any of the shares from the NAS to a PC in the same domain, getting an error : 06/21/05 14:15:53 NetrSamLogon[BIOSS\janet]: SAMBA ACCESS_DENIED (Samba PDC) When I asked Sun about it they responded : "Further reseach has shown that a connection to SAMBA domain controller as is not supported by the
2005 May 29
2
joining files after canonical correlation
Dear R, I recently did a canonical correlation analysis on two subsets of data (location and weather). So I now have canonical scores for location and weather. but I'd now like to do a scatterplot matrix using the pairs statement. Is there a way to somehow join location.U and weather.V to become a new data set from which I could undertake a scatterplot matrix of the canonical variates?
2005 Feb 28
3
(no subject)
Dear R Can you tell me how to change the working directory of R It's just that I have some text files that I wish to save separately from the R filing structure eg. into C:/my documents and need to change the working directory of R so that it reads these files . This means if I ever upgrade the current version of R nothing will be effected. brett Brett Stansfield Environmental Scientist -
2005 Mar 24
2
font sizes for row.names of dendograms
Dear R I recently performed a cluster analysis. It produced the dendogram no problem but unfortunately the font size of the row.names were all cluttered due to their large size So I tried to change the font size using plclust(cluster.results, labels=iris$specie, cex=0.8) and R came back to me saying Error in plclust(cluster.results, labels = iris$specie, cex = 0.8) : unused argument(s)
2005 Mar 27
1
Subject [applying labels to a scatter plot matrix]
Dear R Is there a way to apply row names as labels to a scatter plot matrix , I tried pairs(dogs, labels=row.names) Error in strwidth(labels, "user") : cannot coerce type closure to character vector I'm not sure what this means, however maybe you might know of a way to do this? brett stansfield
2005 Feb 02
1
selecting subsets of data for analysis
can you tell me how to ask R to analyse a subset of data eg. supposing the data set consists of 9 columns and I only want R to analyse columns 1, 3 and 5 how would I command R to conduct eg. boxplots of those variables only? thanks brett Brett Stansfield Environmental Scientist - Water Quality Hawke's Bay Regional Council 102 Vautier Street Private Bag 6006 Napier Phone (06) 835-9200
2005 Mar 23
1
Complete Linkage Clustering techniques
Dear R I recently asked for a cluster analysis Using * cluster.results <- hclust(iris.dist, method="complete") * but nothing happened i.e the previous scatterplot matrix still showed up whereas I was expecting a dendogram. Could it be that because I had used cutree before on the scatter plots that it somehow mucked it up. I tried detach then attach and commenced making the data
2005 Apr 05
2
Principle Component Analysis in R
Dear R Should I be concerned if the loadings to a Principle Component Analysis are as follows: Loadings: Comp.1 Comp.2 Comp.3 Comp.4 X100m -0.500 0.558 0.661 X200m -0.508 0.379 0.362 -0.683 X400m -0.505 -0.274 -0.794 -0.197 X800m -0.486 -0.686 0.486 0.239 Comp.1 Comp.2 Comp.3 Comp.4 SS loadings 1.00 1.00 1.00 1.00 Proportion Var 0.25 0.25 0.25
2005 Apr 15
1
Factor Analysis Biplot
Dear R help I am having difficulty doing a biplot of the first two factors of a factor analysis. I presume it is because the values in factor 2 for Milk and NUTS are not displayed in the component loadings. Loadings: Factor1 Factor2 RedMeat 0.561 -0.112 WhiteMeat 0.593 -0.432 Eggs 0.839 -0.195 Milk 0.679 Fish 0.300 0.951 Cereals -0.902 -0.267
2005 Mar 04
1
(no subject)
Dear R help Is there a way for R to ignore NA entries in a data set. I find I can do box plots for certain columns that have no NA entries but cannot do histograms or boxplots for the other columns that have NA entries Brett Stansfield
2006 Jan 27
1
Basic Many-to-One association
Sari, I got the list display working without doing an explicit find. It took a bit of a conceptual convulution to get it to work. I was thinking of it has Many Cases have One status. There is no support for Many-to-One so I was a bit stumped. Then I realized you just have to turn around your thinking to say One Status has Many Cases. Thus it is a One-to-Many relationship. That is descriped