Displaying 20 results from an estimated 170 matches for "abbe".
Did you mean:
abe
2024 Nov 19
1
New UPS ABB
Hi Team
While i;m searching on the internet about UPS SNMP monitoring , I found
this NUT server. Thank God, But sad news is that my UPS is not listed in
the compatibility list.
But I download NUT server on my ubuntu node and just discover it
sudo /lib/nut/snmp-ups -DD -a ups
unfortunately got the below error message.
228.253598 [D2] Testing ups.model using OID 1.3.6.1.2.1.33.1.1.2.0
2018 Apr 16
3
strange warning: data() error?
A user asked me about this and I can't figure it out.
tmt% R
R Under development (unstable) (2018-04-09 r74565) -- "Unsuffered Consequences"
Copyright (C) 2018 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)
> library(survival)
> data(cgd0)
Warning message:
In data(cgd0) : data set ?cgd0? not found
----
The data set is present and can be
2010 Aug 27
3
Sorting groups in bwplot chart
Hi all,
I am just curious how to sort the groups in a categorical box plot chart
bwplot
here is the example:
d<-data.frame(sample(rep(month.abb,20), 100), runif(100,1,10));
colnames(d) <- c("Month", "Value");
bwplot(d$Month ~ d$Value);
as you can see Months are not sorted alphabetically. Does anybody know ho to
sort those on the chart level?
Thank you
Jan
2010 Aug 04
6
applying strsplit to a whole column
I am sorry, I'd like to split my column ("names") such that all the
beginning of a string ("X..") is gone and only the rest of the text is
left.
x<-data.frame(names=c("X..aba","X..abb","X..abc","X..abd"))
x$names<-as.character(x$names)
(x)
str(x)
Can't figure out how to apply strsplit in this situation - without
using a
2003 Feb 13
2
legend
I think I'm missing something tonight in the usage of 'legend':
plot(0, type="n")
legend(locator(1), month.abb[1:5], pch=15, col=1:5)
gives me something similar to what I want. But
legend(locator(1), month.abb[1:5], fill=T, col=1:5)
gives me 5 black boxes.
What am I doing wrong?
Thank you,
> version
_
platform i686-pc-linux-gnu
arch i686
os
2018 Apr 16
0
strange warning: data() error?
> On Apr 16, 2018, at 2:58 PM, Therneau, Terry M., Ph.D. via R-devel <r-devel at r-project.org> wrote:
>
> A user asked me about this and I can't figure it out.
>
> tmt% R
> R Under development (unstable) (2018-04-09 r74565) -- "Unsuffered Consequences"
> Copyright (C) 2018 The R Foundation for Statistical Computing
> Platform: x86_64-pc-linux-gnu
2005 Sep 07
2
Month recognition issue
Dear all,
I am running
R : Copyright 2005, The R Foundation for Statistical Computing
Version 2.1.1 (2005-06-20), ISBN 3-900051-07-0
Under Mac os X, a french version!
I am preparing a package and I got the following issue
I am trying to read dates that are written in
english and have them recognized by R using
as.Date function.
I realized strangely that when I type
> month.abb
[1]
2008 Aug 19
0
Converting monthly data to quarterly dataMonday, August 18, 2008 11:38 AM
Dear Gavin,
This is really great, thank you! I created some long loops to get rid of
extra months at the beginning and the end of my data but your code is great
for putting it then together quarterly.
thanks again,
Denise
On Mon, 2008-08-18 at 14:31 +0100, Denise Xifara wrote:
> Thank you very much Stephen, but how will aggregate deal with months that
> fall outside annual quarters? eg,
2012 Nov 30
4
Nightingale’s Rose chart-any suggestion?
Hello, Everyone.
Does anyone know how to create a Nightingale’s Rose chart by using R?
Hopefully, the graph could be displayed like this:
http://mbostock.github.com/protovis/ex/crimea-rose.html
Thanks a lot.
Kind regards,
Henry
[[alternative HTML version deleted]]
2018 Apr 16
1
strange warning: data() error?
> On Apr 16, 2018, at 3:20 PM, David Winsemius <dwinsemius at comcast.net> wrote:
>
>>
>> On Apr 16, 2018, at 2:58 PM, Therneau, Terry M., Ph.D. via R-devel <r-devel at r-project.org> wrote:
>>
>> A user asked me about this and I can't figure it out.
>>
>> tmt% R
>> R Under development (unstable) (2018-04-09 r74565) --
2010 Sep 08
2
Drop single-dimensional array
Hi Simon, thank you for the concise reply.
Do you mean the reported behavior of drop() is not a bug?
It looks like a borderline bug to me (see below), but I'm not the judge of
that. If this is the intended behavior and serves an actual purpose, then
that could be explicitly documented in a \note{} on the help page.
Such a note would slightly reduce the surprise of users running into this
2013 Oct 10
0
[LLVMdev] RTSC - Real-Time Systems Compiler
Hey,
As announced earlier, here comes our project description.
It would be great if you could add it to llvm.org!
Tobias
--
The Real-Time Systems Compiler (RTSC)
The Real-Time Systems Compiler (RTSC) is an operating-system–aware
compiler that allows for a generic manipulation of the real-time system
architecture of a given real-time application.
Currently its most interesting application is
2009 Jul 09
1
merge performace degradation in 2.9.1
I have noticed a significant performance degradation using merge in 2.9.1
relative to 2.8.1. Here is what I observed:
N <- 100000
X <- data.frame(group=rep(12:1, each=N), mon=rep(rev(month.abb), each=N))
X$mon <- as.character(X$mon)
Y <- data.frame(mon=month.abb, letter=letters[1:12])
Y$mon <- as.character(Y$mon)
Z <- cbind(Y, group=1:12)
system.time(Out
2009 Aug 20
4
expanding 1:12 months to Jan:Dec
Dear R users
I would like to do some spreadsheet style expansion of dates. For
example, I would need to obtain a vector of months. I approached in an
obviously wrong way:
> paste(01:12)
[1] "1" "2" "3" "4" "5" "6" "7" "8" "9" "10" "11" "12"
> as.Date(paste(01:12),
2004 Feb 11
4
ext3 Overhead
Hello!
I'm using a CompactFlash as storage device. Since those CF cards only have
limited write cycles (CF does wear-levelling by itself, but you don't want
to write too many timet so the card) i was wondering by what a factor the
journaling of ext3 increases the write accesses to the CompactFlash
compared to ext2. Thanks a lot already for your help!
Sincerely
Chris Braun
2010 May 12
2
sorting rows of dataframe
Hello:
I have a dataframe, where the first column in a month:
Month CATCHMENT_ med min max
1 Apr Alknda01 71.68080 11.9406600 196.2753
2 Apr Alknda02 69.44580 12.1065600 196.2753
3 Apr ArialKhan 39.89310 5.8598700 175.4433
4 Apr Arjun01 4.79652 0.0093336 55.7136
5 Apr Arjun02 4.79652 0.0093336 55.7136
6 Apr Arun01 52.42320 0.1571928
2005 Sep 07
1
Language issue
Dear all,
I am running
R : Copyright 2005, The R Foundation for Statistical Computing
Version 2.1.1 (2005-06-20), ISBN 3-900051-07-0
Under Mac os X, a french version!
I am preparing a package and I got the following issue
I am trying to read dates that are written in
english and have them recognized by R using
as.Date function.
I realized strangely that when I type
> month.abb
[1]
2013 Sep 30
4
[LLVMdev] RTSC - Real-Time Systems Compiler
Hello John,
Thank you very much for your fast response and the patch.
Is it possible to add Fabian Scheler and Florian Franzmann to the people
section as proposed in the attached patch?
I hope to manage to write a description for the 'ProjectsWithLLVM' page
this week and send it to the list.
Thanks again,
Tobias
Am 26.09.2013 21:26, schrieb John Criswell:
> Dear Tobias,
>
>
2010 Aug 21
1
[Feature Request] Allow options in Host block to override global options in ssh
...useful for case like following where {d,proj,p,n}cvs.FreeBSD.org is an
alias to ncvs.FreeBSD.org hostname, thus connecting to
{d,proj,p,n}cvs.FreeBSD.org should utilize the existing connection.
#v+
ControlMaster auto
ControlPath /tmp/%r@%h:%p
Host dcvs
Hostname dcvs.FreeBSD.org
ControlPath /home/abbe/.ssh/cvs.cpath
Host projcvs
Hostname projcvs.FreeBSD.org
ControlPath /home/abbe/.ssh/cvs.cpath
Host pcvs
Hostname pcvs.FreeBSD.org
ControlPath /home/abbe/.ssh/cvs.cpath
Host ncvs
Hostname ncvs.FreeBSD.org
ControlPath /home/abbe/.ssh/cvs.cpath
#v-
Thanks
--
Ashish SHUKLA | GPG: F682 CDCC 3...
2012 May 11
1
plot: many bars with wide bars
Hello,
I have got another problem.
I wrote a function which is able to create plots with different numbers of
bars.
In order to give them a similar look I determined the width of the bars
using the parameters
width=0.59
AND
ylim=c(0,10))
(see function below)
Now, this only works if I have just got up to 6 double bars. In the
following example it doesn't work because the bars for the