Displaying 20 results from an estimated 800 matches similar to: "system vs shell wait command"
2010 Mar 29
1
xyplot second y-xis and legend
Dear list,
I try to set a secondary y-axis in a lattice xyplot. This works. However, I
am unable to set a proper legend/key together with the 2nd y-axis under
general xyplot procedures. See example below.
The combination of the par.settings with simpleTheme and other settings
seems to go wrong.
I couldn't find a solution from previous topics. Any suggestions? thanks in
advance!
Robbert
2010 Feb 01
2
Pipe /shell - R does not wait
Dear All,
Within a large script, I try to invoke a second program (called e.g. XXX)
from R using "shell" or "pipe".
e.g.:
> readLines(pipe("XXX"))
or:
> shell("XXX",intern=TRUE, wait = TRUE)
After running the program, the script reads a file with solutions produced
by the second program ("XXX.001").
> readLines("XXX.001")
2010 Oct 29
1
Underline only colnames in grid.table
Dear all,
I would like to underline only the colnames in a table as e.g.
grid.draw(tableGrob(head(iris, 10), name="test"))
I can imagine you should use grid.edit or so, bu I can't figure out how...
Does anyone have a suggestion?
Thanks Robbert
windows xp
R 2.10.1
--
View this message in context:
2009 Apr 28
2
Change font type PNG device with Lattice xyplot
Dear All,
I have some problems with changing the default font (Arial) in a xyplot
which is printed using the PNG-device. Although some things have been
mentioned about this in the forum, I still couldn't figure it out. Can
someone help me out?n Thanks in advance!
I want to print the plot for pasting in Microsoft Word
OS: Windows XP
see example:
a<-data.frame(x=c(1:5),y=c(2,2,3,3,4))
2017 Jan 20
2
SSSD cache case-sensitivity
Dear all,
I'm running CentOS 7.3 with SSSD. I'm using sssd-ad to talk to an AD
backend. Group names in the AD contain capitals.
When sssd-ad is working normally, group names returned are all
lowercase. However, when the AD backend goes offline, group names
returned from the SSSD cache contain capitals.
The change in case breaks stuff (sshd's AllowGroups, for one).
Has anybody
2010 Oct 09
2
gluster and rocks?
Is anyone using Gluster with the Rocks cluster system? If so, do you
know if there is a Roll for Gluster? Or, do you have any advice about
things to do and things to avoid doing?
We're considering using Gluster with Infiniband on our cluster and
trying to learn whether other people have done this so we can perhaps
learn from their experience.
Thanks.
.. Lana (lana.deere at gmail.com)
2009 Aug 14
7
"sudo gem install rails" not able to install thin dependency
Hi folks,
I''m having trouble getting gems to install rails. It just keeps asking
me which version of thin I want to install. Until I choose skip or
cancel, in which case I''m told that something has gone wrong.
Any advice?
Thanks kindly,
Tommy
PS: Gems is 0.94.
---------------------------------------------------------------------
tommy@tommy-laptop:~/www/blog$ sudo gem
2009 Jan 16
2
Predictions with GAM
Dear,
I am trying to get a prediction of my GAM on a response type. So that I
eventually get plots with the correct values on my ylab.
I have been able to get some of my GAM's working with the example shown
below:
*
model1<-gam(nsdall ~ s(jdaylitr2), data=datansd)
newd1 <- data.frame(jdaylitr2=(244:304))
pred1 <- predict.gam(model1,newd1,type="response")*
The problem I am
2011 Mar 25
4
read.xls -> rotate data.frame
Hi to all,
how could I to rotate automatically a data sheet which was imported by
read.xls?
x1 x2 x3 .... xn
y1 1 4 7 ... xn/y1
y2 2 5 8 .... xn/y2
y3 3 6 9 ....xn/y2
yn ... ... ... Xn/Yn
to
y1 y2 y3 .... yn
x1 1 2 3 ..... Yn/x1
x2 4 5 6 .... Yn/x2
x3 7 8 9 .... Yn/x2
xn ... ... ... ..... Yn/xn
Kind regards Knut
2017 Jan 20
2
SSSD cache case-sensitivity
Hi John,
Thanks for pointing me to case_sensitive, that indeed is the cause:
the default for "case_sensitive" is "True", but for the AD provider
"True" is invalid(??), so it defaults to "False"(???)!
Good news is that with both "case_sensitive = False" and "case_sensitive
= Preserving" the results from AD and cache are identical
2010 Oct 29
1
How to clean/reset glusterfs config?
Hello,
I'm trying to set up an experimental gluster storage cluster using virtual
machines (VMs) on Xen. I want to be able to instruct the VMs to "forget"
any previous gluster configuration (i.e. the server to forget about all
previously configured peers, the peers to forget what storage volumes they
are providing, etc). The use case is that the VMs will can be attached to
2005 Mar 02
2
Problems installing gems using rails
Hello
I''m trying to use rubyonrails, but had some troubles:
First, there was an issue with gems (it did not finished the installation):
# gem install rails
Config file /root/.gemrc does not exist
Attempting local installation of ''rails''
Local gem file not found: rails*.gem
Attempting remote installation of ''rails''
Updating Gem source index for:
2005 Mar 22
9
am i the only one with this problem?
(clean install)
>gem install rails
Attempting local installation of ''rails''
Local gem file not found: rails*.gem
Attempting remote installation of ''rails''
Install required dependency activesupport? [Yn] y
Install required dependency activerecord? [Yn] y
Install required dependency actionpack? [Yn] y
Install required dependency actionmailer? [Yn] y
2008 Dec 11
3
getting ISO week
Hi all,
Is there a simple function already implemented for getting the ISO
weeks of a Date object?
I couldn't find one, and so wrote my own function to do it, but would
appreciate a pointer to the "default" way. If a function is not yet
implemented, could the code below be of interest to submit to CRAN?
Best Regards,
Gustaf
--------------------
2007 Dec 26
1
Can you recover default argument values of a function?
Hi.
Maybe this is a stupid question. If so, I apologize, but here goes. Suppose I have a function f1(x,...) that calls a function f2(y1,y2,...,yn) in the following way: if x satisfies a certain condition, then I want to call f2(x,y2,...,yn); otherwise I want to use the default value of y1, if there is one. I could do something like the following:
v <- ifelse ( is.null(x), f2( , y2,...,
2009 Jun 02
1
plot 4th variable contour lines on filled.contour
Hello,
I have a dataset with 4 variables, each consisting of a vector, all with
the same length. I start by interpolating the first three variables
using the function "interp", and plot the interpolation successfully
using "filled.contour". I then interpolate the first two variables and a
fourth using "interp" again, but when I try to overlay the contour
lines
2016 Nov 25
2
Recent updates for CentOS7?
Hi,
I noticed there have not been any new updates for CentOS 7 for four
weeks now (at least not under
http://mirror.centos.org/centos/7/updates/x86_64/). For Centos 6 updates
have been released more recently (i.e. the Firefox-45.5.0 update).
I was not able to find any information about this "pause". Is this
planned, and when will new updates be released?
Thanks!
--
Robbert
2007 Aug 01
4
profiles?
Sometimes a user logging in takes a while. I suspect the
time delay is due to the size of a user's profile. Where
is the profile data kept and how can this data be scrubbed
or compressed?
Mike
2009 Jun 01
2
Webgeb 0.5.x possible in Windows XP?
Hi Colin,
I think fcgi is only required for testing. I do without it and
directly open the output files in my browser. Maybe try saying no to
ramaze or whatever depends on fcgi?
On Mon, Jun 1, 2009 at 18:02, Colin MacNaughton
<colin.macnaughton at gmail.com> wrote:
> I''m trying to install the latest webgen on Windows XP but am met with:
>
> [C:/Programs] gem install webgen
2006 Oct 30
3
Samba Breaks with ACLs
Hello,
We are running Samba 3.0.23c on Debian.
Over the weekend, we updated out file server to Debian's kernel 2.6.18. We
had previously never run a kernel with ACL support enabled. Since the
upgrade, we are seeing very strange permission behavior. It appears to be
related to POSIX ACL support in Samba.
It seems that what's happening is this.
We have a number of files that are