Displaying 20 results from an estimated 10000 matches similar to: "how to specify the Oy axis length"
2012 Feb 27
2
RStudio: how to change language from fr(french) to eng(english)
Hello,
RStudio displays errors in french . I'd like to change it in english
Please help,
Thanks
--
View this message in context: http://r.789695.n4.nabble.com/RStudio-how-to-change-language-from-fr-french-to-eng-english-tp4424972p4424972.html
Sent from the R help mailing list archive at Nabble.com.
2012 Feb 03
4
how to plot several curves in the same frame
Hello,
I'd like to know how to plot several curves in the same frame (1curve =
1line=1day).
For instance (csv file):
2012-02-01 01:00:00; 2100
2012-02-01 02:00:00; 2200
...
2012-02-01 23:00:00; 2500
2012-02-02 01:00:00; 1000
2012-02-02 02:00:00; 1500
...
2012-02-02 23:00:00; 1700
Here, I have to plot 2 curves in the same frame: 1 for 2012-02-01 (on the
first line) and 1 for 2012-02-02 (on
2012 Jan 12
2
is there an equivalent for #ifdef (C langage) in R
Hi,
I'd like to know if there is an equivalent for #ifdef (Clangage) in R. I 'd
like to do something like:
useDebug = defmacro(DEBUG, expr=(DEBUG==1))
if(useDebug(0)){
#Here I do not use debug mode
make_addition = function(a, b) {
c=a+b
plot(c)
return(c)
}
}else{
#here I use debug mode
c=a+b
}
I assume this would work... The problem is :
if
2012 Jan 06
4
data.frame: temporal complexity
Hello,
I created a data.frame which contains two columns: df$P (Power) et
df$DateTime (time). I'd like to add a new column df$diffP (difference of
Power between T and T-2).
I made a loop :
for (i in 3:length(df$DateTime)){
df$diffP[i] = df$P[i] - df$P[i-2]
}
execution time result is unaceptable: 24s !!
Is there any way to reduce complexity about O(n) ? for example 2 or 3s (10s
maxi)
2012 Feb 08
1
basic debugging
Hi,
I have to debug my program. When I execute my function (in debug mode), I
have got an error but I do not know which line is concerned. I do not want
to do an infinite "Browse[2]>n with each line in my function...
THanks for your help,
ikuzar
--
View this message in context: http://r.789695.n4.nabble.com/basic-debugging-tp4371113p4371113.html
Sent from the R help mailing list
2012 Feb 24
6
strange behaviour of "POSIXlt" "POSIXt" object
Hi,
Does anybody know why get I this kind of strange situation:
Browse[2]> hcEnd
[1] "2009-03-29 06:30:00"
Browse[2]> class(hcEnd)
[1] "POSIXlt" "POSIXt"
Browse[2]> is.na(hcEnd)
[1] TRUE
This issue is the source of my all issues in my program,
Thanks for your help
--
View this message in context:
2012 Feb 02
2
How to retrieve a column name of a data frame
Hi,
I 'd like to know how to retrieve a column name of a data frame. For
instance :
df = data.frame(c1=c('a','b'),c2=c(1,2))
> df
c1 c2
1 a 1
2 b 2
I would like to retrieve the column name which value is 2 (here, the column
is c2)
thanks for your help
--
View this message in context:
2012 Jan 12
2
defmacro installation issue
Hi everybody,
I want to use macro in my R code. But defmacro was not in my libraries. So I
installed it :
> install.packages("gtools")
Installing package(s) into ?C:/Program Files/R/R-2.13.2/library?
(as ?lib? is unspecified)
essai de l'URL
'http://cran.cict.fr/bin/windows/contrib/2.13/gtools_2.6.2.zip'
Content type 'application/zip' length 102500 bytes (100 Kb)
2012 Feb 10
1
debug in a loop
Hi,
I'd like to debug in a loop (using debug() and browser() etc but not print()
). I'am looking for the first occurence of NA.
For instance:
tab = c(1:300)
tab[250] = NA
len = length(tab)
for (i in 1:len){
if(i != len){
tab[i] = tab[i]+tab[i+1]
}
}
I do not want to do "Browse[2]> n" for each step ... I'd like to declare a
"browser()" in the loop
2011 Dec 27
1
How to extract an interval of "hour:minute" type
Hi,
I 'd like to know how to extract an interval of "hour:minute" type from a
column of POSIXlt POSIXct type.
For instance:
my_data.csv:
4352;2011-09-02 21:30:00;3242;
4352;2011-09-02 21:31:00;3315;
4352;2011-09-02 21:32:00;4241;
4352;2011-09-02 21:33:00;5394;
...
4352;2011-09-02 01:02:00;67;
4352;2011-09-02 01:03:00;67;
4352;2011-09-02 01:04:00;67;
....
I loaded
2012 Feb 27
2
kmeans: how to retrieve clusters
Hello,
I'd like to classify data with kmeans algorithm. In my case, I should get 2
clusters in output. Here is my data
colCandInd colCandMed
1 82 2950.5
2 83 1831.5
3 1192 2899.0
4 1193 2103.5
The first cluster is the two first lines
the 2nd cluster is the two last lines
Here is the code:
x = colCandList$colCandInd
y = colCandList$colCandMed
m = matrix(c(x, y),
2012 Jan 12
1
how to select column wich median is in this interval [5;6]
Hello,
I have got a data frame df like this :
> df
e1 e2 e3 e4
1 1 11 1 21
2 2 12 2 22
3 3 13 3 23
4 4 14 4 24
5 5 15 5 25
6 6 16 6 26
7 7 17 7 27
8 8 18 8 28
9 9 19 9 29
10 10 20 10 30
where e1 ... e3 are vectors
I have to select columns which median is in the interval [5;6] ( Here, for
instance, e1 and e3)
I would not want to use loop... (for, while)
I search
2012 Jun 01
1
Error: package 'myLib' is not installed for 'arch=i386'
Hello,
I 'd like to use some functions in myLib. So I do:
library(myLib)
Then I get this message:
Error: package 'myLib' is not installed for 'arch=i386'
> sessionInfo()
R version 2.13.2 (2011-09-30)
Platform: i386-pc-mingw32/i386 (32-bit)
locale:
[1] LC_COLLATE=French_France.1252 LC_CTYPE=French_France.1252
LC_MONETARY=French_France.1252 LC_NUMERIC=C
2015 Mar 19
6
Dovecot Oy merger with Open-Xchange AG
Hi all,
Today I can finally announce that Dovecot Oy company has merged with Open-Xchange AG. This helps us to get more Dovecot developers, support people and so on. Most importantly, eventually it should allow me to get back to doing what I like the most: Designing new and interesting stuff for Dovecot and perfecting the old stuff :) OX is a great match to Dovecot going forward. They also really
2015 Mar 19
6
Dovecot Oy merger with Open-Xchange AG
Hi all,
Today I can finally announce that Dovecot Oy company has merged with Open-Xchange AG. This helps us to get more Dovecot developers, support people and so on. Most importantly, eventually it should allow me to get back to doing what I like the most: Designing new and interesting stuff for Dovecot and perfecting the old stuff :) OX is a great match to Dovecot going forward. They also really
2015 Mar 25
1
Dovecot Oy merger with Open-Xchange AG
I hate to have started this, especially the "sister" thread that has
dissented into a flame war of what is OSS.
Let me say that I believe there is nothing wrong trying to make money on
ones efforts. Actually it is a must. How can anyone continue to put
efforts into a project when there is no reward? Especially when most of
the effort is by a single individual. Secondly there comes a
2015 Mar 23
0
Dovecot Oy merger with Open-Xchange AG
I find it extremely interesting that no one has commented on the merger
of Dovecot Oy and Open-Xchange AG as announced by Timo on the 19th. Is
this something that was known a long time ago and I missed? OK checked
the on-line archive of the mailing list, no comments there - its not my
email set-up - LOL.
I am usually emotionally (at least) against of open-source projects
loosing their
2015 Mar 23
1
Dovecot Oy merger with Open-Xchange AG
I think everyone shares your concerns. But there are no rules that the
outcome of this merger must get something bad, so let's see what
happens. I hope that it's true what Timo said and that dovecot can
evolve and get even better as it is today. Good luck guys!
Regards, Adrian.
On 23.03.15 15:08, Andreas Kasenides wrote:
> I find it extremely interesting that no one has commented on
2015 Mar 23
1
Dovecot Oy merger with Open-Xchange AG
Am 23.03.2015 15:08 schrieb Andreas Kasenides:
> I am usually emotionally (at least) against of open-source projects
> loosing their independence to large corporations. Possibly due to bad
> experiences in the past when OSS were driven from Open to Obscure in
> the process of trying to make money out of them.
2ct from me--
I put it this way: if dovecot would have been a
2015 Mar 25
0
Dovecot Oy merger with Open-Xchange AG
On 3/19/2015 3:26 AM, Timo Sirainen wrote:
> Hi all,
>
> Today I can finally announce that Dovecot Oy company has merged with Open-Xchange AG. This helps us to get more Dovecot developers, support people and so on. Most importantly, eventually it should allow me to get back to doing what I like the most: Designing new and interesting stuff for Dovecot and perfecting the old stuff :) OX is