similar to: Scp and SFTP speed much difference???

Displaying 20 results from an estimated 7000 matches similar to: "Scp and SFTP speed much difference???"

2010 Jul 05
1
Linux-Windows problem
Dear All, I faced the following problem. With the same data.frame the results are different under Linux and Windows. Could you help on this topic? Thanks in advance, Ildiko Linux: > d = read.csv("CRP.csv") > d$drugCode = as.numeric(d$drug) > cor(d, use="pairwise.complete.obs") PATIENT BL.CRP X24HR.CRP X48HR.CRP drug drugCode PATIENT NA
2018 May 22
2
Bootstrap and average median squared error
I forgot, you should also set.seed() before calling boot() to make the results reproducible. Rui Barradas On 5/22/2018 10:00 AM, Rui Barradas wrote: > Hello, > > If you want to bootstrap a statistic, I suggest you use base package boot. > You would need the data in a data.frame, see how you could do it. > > > library(boot) > > bootMedianSE <- function(data,
2018 May 22
0
Bootstrap and average median squared error
Hello, If you want to bootstrap a statistic, I suggest you use base package boot. You would need the data in a data.frame, see how you could do it. library(boot) bootMedianSE <- function(data, indices){ d <- data[indices, ] fit <- rq(crp ~ bmi + glucose, tau = 0.5, data = d) ypred <- predict(fit) y <- d$crp median(y - ypred)^2 } dat <-
2018 May 21
2
Bootstrap and average median squared error
Dear R-experts, I am trying to bootstrap (and average) the median squared error evaluation metric for a robust regression. I can't get it. What is going wrong ? Here is the reproducible example. ############################# install.packages( "quantreg" ) library(quantreg) crp <-c(12,14,13,24,25,34,45,56,25,34,47,44,35,24,53,44,55,46,36,67) bmi
2018 May 22
1
Bootstrap and average median squared error
Hello, Right! I copied from the OP's question without thinking about it. Corrected would be bootMedianSE <- function(data, indices){ d <- data[indices, ] fit <- rq(crp ~ bmi + glucose, tau = 0.5, data = d) ypred <- predict(fit) y <- d$crp median((y - ypred)^2) } Sorry, rui Barradas On 5/22/2018 11:32 AM, Daniel Nordlund wrote: > On 5/22/2018
2010 Aug 04
1
callerid between 2 asterisk servers
I've got 2 asterisk servers on the same box: ubuntu 10.04 lucid. I have not been able to send useful callerid info between them (callerid becomes "serverB"). serverA register statement: (serverB has the exact opposite statement) register => serverA:serverApassword at IP_of_serverB_nic/serverB users.conf of serverA: users.conf of serverB: [serverB] [serverA] type=friend
2018 May 22
0
Bootstrap and average median squared error
On 5/22/2018 2:32 AM, Rui Barradas wrote: > bootMedianSE <- function(data, indices){ > ???? d <- data[indices, ] > ???? fit <- rq(crp ~ bmi + glucose, tau = 0.5, data = d) > ???? ypred <- predict(fit) > ???? y <- d$crp > ???? median(y - ypred)^2 > } since the OP is looking for the "median squared error", shouldn't the final line of the
2008 Jun 27
2
puppetrun?
Hi, I''m having trouble getting puppetrun to work, it returns: # puppetrun --debug --host serverb debug: Puppet::Network::Client::Runner: defining puppetrunner.run Triggering serverb debug: Calling puppetrunner.run warning: peer certificate won''t be verified in this SSL session err: Could not call puppetrunner.run: #<RuntimeError: HTTP-Error: 500 Internal Server Error >
2017 Jul 28
3
Superscript and subscrib R for legend x-axis and y-axis and colour different subjects in longitudinal data with different colours
I am trying to make a x-axis and y-axis titles with both a special character and a subscript. I am not being able to do this. I think its just a placing of my parenthesis, but I've tried (seemingly) everything. Even more, when I try the blog users code it works. Is it because I?m using longitudinal data? Even more. Is it possible to colour each one of the 15 lines with a different
2003 Oct 08
7
iax2 trunk
Im having problems setting up a trunk between two locations. Heres the setup I have: Server A is connected to the PSTN at my datacenter Server B is connected to a clients e1 line at his datacenter I only want to route calls from Server B to Server A and out through the PSTN. Server A has a lot of other things connecting to it, so I need a very specific context for all calls to go through.
2008 May 30
3
How to backup files without destroying the destination?!
Hello List, i would like to copy/mirror/rsync the backup files from ServerA to ServerB. Since i must assume that ServerA is hacked (public server with a few services), i would like to "pull" the files to ServerB (save server with no services). That means i do something like: rsync -avz ServerA:/backup ServerB:/backup IF ServerA gets hacked and the files get zeroed out (every file
2007 Mar 16
1
how to use option for rsync
hello all, i want to backup some files from serverA to serverB. but problem is that i can ssh to serverB direcr as root with default port. i have to first ssh as user with port 65300 and have to su - than only get root prompt of serverB . is there any option with rsync to solve this??? serverA# ssh -l user serverB -p 65300 then only login user@serverB$ su - root@serverB# -------------- next
2007 May 05
1
strange authentication issue
hi I just joined this list, as I am having really strange issue and so far been unable to find the root cause.I will give you scenario to see if anyone knows what could be the cause: 1: 2 windows 64bit enterprise server serverA and Server B 2: both on same physical network no firwalls not routers 3: both on same domain controller ( windows NT4) I can connect to serverA as under from a linux
2015 Feb 05
2
IAX2 problem for WAN connections
Hi, I am trying to connect two Asterisk servers using IAX2. Everything works fine when I couple them within a LAN segment, but not when I connect them using WAN connections. I made sure that the routers' ports are mapped properly and checked this with additional ssh rules. ServerA is a Raspberry box with the vendor's Asterisk version 1.8.13.1 and ServerB is normal CentOS 7 box with
2017 Jul 31
0
Superscript and subscrib R for legend x-axis and y-axis and colour different subjects in longitudinal data with different colours
Hi Rosa something like plot(1,1, sub=expression(lambda^"2")) So with your example, do you want something like plot(c(1:5), CRP7raw[1,], type = "n", xlim=c(1,5), ylim=c(-10,5) , xlab="Day in ICU", ylab="CRP (mg/dL)", sub = mtext(expression(lambda^2))) CRP7graph <- apply(CRP7, 1, lines, col="gray") Cheers Petr >
2017 Jul 31
2
Superscript and subscrib R for legend x-axis and y-axis and colour different subjects in longitudinal data with different colours
> Hi Rosa > something like > plot(1,1, sub=expression(lambda^"2")) > So with your example, do you want something like > plot(c(1:5), CRP7raw[1,], type = "n", xlim=c(1,5), ylim=c(-10,5) , > xlab="Day in ICU", > ylab="CRP (mg/dL)", > sub = mtext(expression(lambda^2))) OOps! Either plot( ..., sub = *) or
2013 Feb 25
1
samba + nfs locking doesn't work
this is the case: serverA [ CentOs 5.6 kernel 2.6.18-238.12.1.el5.centos.plus, Samba ver. 3.5.21 ] serverB [ CentOS 5.6 kernel 2.6.18-348.1.1.el5.centos.plus, Samba ver. 3.6.6-0.129.el5 ] clientA [ WindowsXP ] clientB [ WindowsXP ] The serverA shares via Samba the resource [test] [global] workgroup = DMIT netbios name = SAMBA server string = DMIT domain server interfaces = eth0
2009 Apr 17
1
ColorRamp different from ColorRampPalette
I try to use ColorRamp as ColorRampPalette (i.e. with the same gradient), but it seems there is a nuance that I've missed. pal.crp<-colorRampPalette( c("blue", "white", "red"), space = "rgb") plot(rep(0,40),pch=16,col=pal.crp(40)) # is great But, using the same gradient with colorRamp is giving erratic colors. pal.cr<-colorRamp(
2017 Jul 31
0
Superscript and subscrib R for legend x-axis and y-axis and colour different subjects in longitudinal data with different colours
Hi Martin see in line > -----Original Message----- > From: Martin Maechler [mailto:maechler at stat.math.ethz.ch] > Sent: Monday, July 31, 2017 10:52 AM > To: PIKAL Petr <petr.pikal at precheza.cz> > Cc: Rosa Oliveira <rosita21 at gmail.com>; r-help mailing list <r-help at r- > project.org> > Subject: Re: [R] Superscript and subscrib R for legend x-axis and
2007 Jan 23
3
rsync doesn't update directory ownership
Hi all, Has anyone encountered this: On ServerA, I make this directory: /var/ftp/pub/userA with ownership root.root It gets rsynced to serverB with this command: rsync -avzgorp --delete -e ssh /var/ftp/pub/ root at serverB:/var/ftp/pub/ However, when I change the ownership of /var/ftp/pub/userA to userA.userA, this change is not rsync-ed to serverB. Is there any option to achieve this? Thank