search for: oett

Displaying 20 results from an estimated 33 matches for "oett".

Did you mean: ott
2012 Feb 29
3
Does anyone knows a KMeans ++ package for R?
Dear all. I am searching for KMeans ++ for R. I cannot find it. Do you know any package with it? Best regards, Rui
2013 Dec 02
1
Days to solstice calculation
Hello, I've come across a problem in developing a set of custom functions to calculate the number of hours of daylight at a given latitude, and the number of days a date precedes or secedes the summer solstice. I discovered an inconsistency concerning leap years between my derived values and those from the US naval databases. It seems as far as I can figure that my inconsistency arises either
2013 Sep 18
2
cov2cor exp
Ok, Thanks foe the answer, Ken: *1L, 2L etc are integers. (That is, identical to as.integer(1) , as.integer(2) etc) Using integers (instead of "numeric" type) is more efficient as here they're used as indexes and would be converted to integer anyway. Compare > is(1) ... and > is(1L) 1L:p is the sequence 1, 2, 3, ..., p (just like 1:p) Just for curiosity, what is
2013 Sep 09
1
Hmisc binconf function value interpretation during narrow confidence intervals
Hello all, I've been using binconf (package Hmisc) at a range of alpha values and noticed that using the 'Wilson' method when alpha is larger (i.e. narrow CI), results in the upper value being smaller than the lower value. The 'exact' and 'asymptotic' methods give results in the realm I'd expect. But the help file suggests: "Following Agresti and Coull, the
2012 Jul 24
0
setar function error message (SOLVED)
Hi, I know the problem now. Previously i use as.timeSeries function, but the error message of setar function still came out. Anyway, many thanks to Pascal for the solution. Best Regards, Ario On Mon, Jul 23, 2012 at 4:28 PM, Pascal Oettli <kridox@ymail.com> wrote: > Hello, > > It works for me (with a warning message), by adding this line before the > setar procedure: > > > a <- as.ts(a) > > As I don't know the time step, thus it is only a pseudo time-series. > > Regards, > Pascal &...
2013 May 13
2
reduce three columns to one with the colnames
Ein eingebundener Text mit undefiniertem Zeichensatz wurde abgetrennt. Name: nicht verf?gbar URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20130513/fe848ce7/attachment.pl>
2015 Mar 09
3
Rstudio R-devel libR.so
Dear All, I am actually on R-devel using shell consol. When I run RStudio, it can't find libR.so in the new /lib folder where is libRblas.so libRlapack.so. At first step I configure R-devel to share library with ./configure --enable-R-shlib. when I copied libR.so from /usr/lib/R/lib/libR.so (stable version R 3.1) to /usr/local/R-devel/lib/libR.so (R-devel version), That doesn't work.
2015 Mar 09
3
Rstudio R-devel libR.so
Dear All, I am actually on R-devel using shell consol. When I run RStudio, it can't find libR.so in the new /lib folder where is libRblas.so libRlapack.so. At first step I configure R-devel to share library with ./configure --enable-R-shlib. when I copied libR.so from /usr/lib/R/lib/libR.so (stable version R 3.1) to /usr/local/R-devel/lib/libR.so (R-devel version), That doesn't work.
2013 Sep 03
1
tm::stemDocument function not work
https://gist.github.com/rpietro/6430771 stemDocument function doesn't seem to be working. Tried to look up and a few people have reported the problem, but no solution that I could find. would appreciate any help
2013 Feb 04
4
rJava works with 32-bit but not 64
Hello: rJava works for me under 32-bit but under not 64-bit R; see below. Suggestions? Thanks, Spencer > library(rJava) Error : .onLoad failed in loadNamespace() for 'rJava', details: call: stop("No CurrentVersion entry in '", key, "'! Try re-installing Java and make sure R and Java have matching architectures.")
2012 Mar 08
3
legend
Hi, A very simple thing that I'm unable to do. I did look at the help but .... While putting a legend on a plot, I don't wish to have the enclosing border surrounding the words (as given below). Tried to use the following, but didn't help : legend (locator(1), border=FALSE, fill=FALSE, "Important ones") legend (locator(1), border=NILL, fill=NILL, "Important
2012 Jul 06
2
Problem with Apriori
Good morning When I try to run an Apriori, I keep often the following message: checking subsets of size 1Error in apriori(tr, parameter = list(supp = 3e-05, conf = 0.05, minlen = 2, : internal error in trio library Other time it works fine on the same data. What can be the reason for this? -- Jolinda Bartlett Eighty20 Consulting Tel: 021 460 0440 Fax: 087 625 0649 3.1 East Wing The Palms
2013 Jan 29
2
remove margin between plot and axis
Readers, Am trying to plot a graph with type 'h' and want to remove the white space between the plot lines and the x axis. The help section 'par' suggests that the option 'mai' controls this feature, but the syntax plot(...mai=c(0,1,1)) is ineffective Any advice please? -- r2151
2013 Mar 15
0
ggplot2, arrows and polar coordinates
...ssue appears while trying to plot arrows with "geom_segment" (package ggplot2), with polar coordinates ("coord_polar"). The direction of some arrows is wrong (red rectangle). Please find herewith an example. Does someone know how to deal with that issue? Best Regards, Pascal Oettli #---------------------------------------------------------------------------------- # Example adapted from the help page of "geom_segment" library(ggplot2) library(grid) d <- data.frame(x1=-135.3, x2=-158.3, y1=37.2, y2=45.2) p <- ggplot(seals, aes(x = long, y = lat)) p1 &lt...
2013 Apr 16
2
Unsubscribe please
Verstuurd vanaf mijn iPad Bert Verleysen 00 32 (0)477 874 272 www.beverconsult.be
2013 Dec 10
2
Multiple Lorenz curves in one diagram - populations with different "n"
Dear R users, I'm using the "ineq" package to calculate the values ​​of Gini and Lorenz coefficients and to and plot Lorenz graph. I want to plot on the same diagram, curves from two different populations, that have different "n". How can I do this?   Best regards,   Patricia [[alternative HTML version deleted]]
2012 Mar 01
3
Create a function "automatically" from lm formula and coefficients?
I hope the subject says it all. I want to be able to use an lm object and the associated coefficients to create function that can produce "expected" "y" values given inputs. Thanks, KW -- [[alternative HTML version deleted]]
2013 Sep 26
1
Less than equal to symbol in ggplot2 legend text
Hello, I am trying to add a less than equal to symbol in a ggplot2 legend text. See sample code below. I have tried using the expression function and \u2264. I also tried adding labels to legend.text under theme. Neither of these 3 options work. Please help, Mahesh ++++++++++++++ Extra.column=ifelse(data[,covariate]>cutpoint,1,0) Grp1 <- "\u2264 1.5" Grp2 <-
2013 Aug 27
1
error installing ggm package
I'm new to R and trying to use the ggm package and I get the following message: > library("ggm", lib.loc="/Library/Frameworks/R.framework/Versions/3.0/Resources/library") Loading required package: graph Error: package ‘graph’ could not be loaded In addition: Warning message: In library(pkg, character.only = TRUE, logical.return = TRUE, lib.loc = lib.loc) : there is no
2012 Dec 12
2
long margin text below lattice plot - how to wrap lines?
Hello, I've got a lattice plot and need to add text into the bottom margin of the plotting area (below the bottom legend). This seems to work in principle using grid.arrange, yet the text to be added is rather long. As a consequence, it gets clipped: require(lattice) require(grid) myplot <- xyplot(1~1) mytext <- textGrob("This is such a very very long text that it goes on forever