similar to: [R & Unix ..] system("test",...) gives funny results...

Displaying 20 results from an estimated 30000 matches similar to: "[R & Unix ..] system("test",...) gives funny results..."

1997 Nov 28
0
R-alpha: Latin-1 characters / Locale etc.
[to R-devel, for everyone's information; thanks a lot, Peter!] >>>>> "PD" =3D=3D Peter Dalgaard BSA <p.dalgaard@biostat.ku.dk> writes: PD> Hmmm. You may need a call to PD> #include <locale.h> PD> setlocale(LC_ALL,"") PD> (or LC_CTYPE?) before your environment variables take effect. Yes, this was `it'.
1998 Nov 18
2
[jar@oriole.er.usgs.gov: Re: [R] loading fortran with Redhat 5.1]
I can not answer this (message only to me). Certainly, some of you do.. Martin ------- Date: Wed, 18 Nov 1998 13:22:47 -0500 (EST) From: "J. Andy Royle" <jar@oriole.er.usgs.gov> To: Martin Maechler <maechler@stat.math.ethz.ch> Subject: Re: [R] loading fortran with Redhat 5.1 In-Reply-To: <199811181812.TAA26068@sophie.ethz.ch> Hi Martin, The reason I was
1999 Dec 08
1
plot math - segfault and "frac", "^" bug(s).. (PR#365)
MM> I've sent two bug reports that both haven't been forwarded to R-devel MM> and haven't should up at the jitterbug repository. MM> ?? MM> Martin Well, actually only one [the other went to R-core alone] Here it is : From: Martin Maechler <maechler@sophie> To: R-bugs Subject: plot math - segfault and "frac", "^" bug(s).. Date: 8
2003 Aug 15
6
plot.lm mislabels points with na.exclude (PR#3750)
R 1.7.1 on Windows XP The "normal Q-Q plot" produced by plot.lm() mislabels points when the model is fitted using na.action=na.exclude. Example: x <- 1:50 y <- x + rnorm(50) y[c(5,10,15)] <- NA # insert some NA's y[40] <- 50 # add an outlier plot(lm(y ~ x, na.action=na.omit)) # outlier correctly labeled in all # four plots
2017 Dec 15
1
GUI/X11 login and shells other than bash?
On Fri, December 15, 2017 2:34 pm, Stephen John Smoogen wrote: > On 15 December 2017 at 13:24, Valeri Galtsev <galtsev at kicp.uchicago.edu> > wrote: >> Dear Experts, >> >> After one of updates that was released some time ago (a Month ago or >> maybe >> even earlier) I have noticed the following. On the machines with default >> runlevel 5 (sorry
2009 Nov 18
1
version pinning with yum
Well, there's a bug in the globbing for the tcsh with 5.4, and my boss has filed a bug report. Meanwhile, I downgraded tcsh on those systems whose users use that as their shell. Until it's resolved, he wants me to pin the version. Googling, I see someone a few years ago, answering someone's question, suggested adding exclude=openoffice* near the top of /etc/yum.conf. I also see, more
2005 Sep 13
4
plot(<lm>): new behavior in R-2.2.0 alpha
As some of you R-devel readers may know, the plot() method for "lm" objects is based in large parts on contributions by John Maindonald, subsequently "massaged" by me and other R-core members. In the statistics litterature on applied regression, people have had diverse oppinions on what (and how many!) plots should be used for goodness-of-fit / residual diagnostics, and to my
2002 Apr 10
5
Funny characters in x11 window title (PR#1451)
In R-1.5.0pre (2002-04-08) on Solaris 2.6, the window that X11() creates has a title like: R Graphics: Device 2 (ACTIVE) o iyeP )( y except the funny characters at the end have umlauts and other accents (i.e. extended ASCII characters), and they may be different each time X11() is invoked. There is no loss of functionality; it just looks a little ugly. I saw this behavior in R-1.3.?, it
2015 Apr 24
2
Real sh? Or other efficient shell for non-interactive scripts
On Fri, April 24, 2015 12:04 pm, John R Pierce wrote: > On 4/24/2015 9:47 AM, Gordon Messmer wrote: >> On 04/24/2015 03:57 AM, Pete Geenhuizen wrote: >>> if you leave it out the script will run in whatever environment it >>> currently is in. >> >> I'm reasonably certain that a script with no shebang will run with >> /bin/sh. I interpret your
2008 Jul 14
1
Off topic: Tcl/Tk outside R.
I'm trying to learn about the tcltk package and its uses. Floundering around a bit ... Have discovered Peter Dalgaard's articles in R-News, which should help. Also James Wettenhall's suite of examples look like they might be enlightening, even though the indications are that they are Windoze oriented. Be that as it were, I decided to fool around a bit with Tcl/Tk *outside* of R to
2001 Aug 17
1
Excel -> *.CSV in Unix (Linux) command line?
A colleague has a dozen of excel sheets and also expects to get updates regularly. He could open these in M$-Excel and export as *.csv manually, "bring back to Unix" and then read into R. Of course there must be options to start programming this in something like visual basic, but we wouldn't to really want to... We also know that probably Gnumeric could do the job (since the xls
2017 Dec 15
3
GUI/X11 login and shells other than bash?
Dear Experts, After one of updates that was released some time ago (a Month ago or maybe even earlier) I have noticed the following. On the machines with default runlevel 5 (sorry about old terminology, the new one is still confusing for me ;-) GUI/X11 login (display manager) lists only users whose default shell is bash. Or, at least users whose default shell is tcsh are not listed at all, and if
2013 Aug 15
1
Behavior of jexec
Hi, I noticed two things when running jexec. I run FreeBSD 9.2-RC1 from binaries and jails 9.2-RC1 too. I log as root on the host (I havn't any other user). # 1. $HOME For a jail named "blog" with a "blog" user, which $HOME is at /home/blog, if I do: jexec -U blog blog tcsh My id is correct, but $HOME is still root. # 2. Accessing a jail in ssh command line I'm
1997 May 05
0
R-beta: R 0.49 -- "funny" bug: beta(.) gives lbeta(.); lbeta(a,b) gives a
[I send this to R-help, since the bug may affect users..] The beta(.) and ln(beta(..)) functions are not giving proper results in R-0.49. This does NOT affect usual beta-distribution calculations, since the internal beta(.) and lbeta(.) are okay. beta(1,2) [1] -0.6931472 exp(beta(1,2)) [1] 0.5 lbeta(3,4) [1] 3 ------- For R-devel'ers : Using gdb clearly shows that beta(.) really
2004 Oct 23
4
Plotting Bivariate Normal Data
Dear list I have a vector of values that allegedly have a bivariate normal distribution. I want to create a plot that shows the values I have obtained, and the bivariate normal distribution curve for the data. Is there a way of doing this in R? Many thanks for your help, Sarah. --------------------------------- [[alternative HTML version deleted]]
2015 Jun 25
1
Winbindd Strangeness
> > On 24/06/15 02:55, David Minard wrote: >> On 23/06/15 13:32, David Minard wrote: >> >>> I've Set up a DC and a Member Server for a file server. Both are >>> running on Centos7 and samba version 4.2.2. The Member Server is >>> running smbd and winbindd. >>> >>> I've followed the wiki and for the most part
2007 Mar 11
2
logrotate, syslog, and chsh
I'm noticing that logrotate's default configuration for rotating /var/ log/secure and /var/log/messages partially fails if root's shell is set to /bin/tcsh (via chsh). (Running on CentOS 4.4; logrotate-3.7.1-5.RHEL4). What seems to be happening is that the logrotate.d/syslog postrotate command runs: /bin/kill -HUP `cat /var/run/syslogd.pid 2> /dev/null` 2> /dev/null
2015 Jun 24
1
Winbindd Strangeness
On 23/06/15 13:32, David Minard wrote: > I've Set up a DC and a Member Server for a file server. Both are running on Centos7 and samba version 4.2.2. The Member Server is running smbd and winbindd. > > I've followed the wiki and for the most part it's working. However, after stuffing up the ranges, then fixing them up, when I create new accounts, adding all the
2015 Jun 29
1
Winbindd Strangeness
On 25/06/15 13:44, David Minard wrote: >> On 24/06/15 02:55, David Minard wrote: >>> On 23/06/15 13:32, David Minard wrote: >>> >>>> I've Set up a DC and a Member Server for a file server. Both are >>>> running on Centos7 and samba version 4.2.2. The Member Server is >>>> running smbd and winbindd.
2015 Nov 25
3
ssh-copy-id bugfix
On Wed, Nov 25, 2015 at 6:07 AM, Ruediger Meier <sweet_f_a at gmx.de> wrote: > Hi, > > On Tuesday 24 November 2015, Radek Podgorny wrote: >> hello everyone! >> >> i'd like to sincerely ask you to include a fix for ssh-copy-id bug >> i'll be linking below. it's a trivial fix which resolves >> https://bugzilla.mindrot.org/show_bug.cgi?id=2206