similar to: Labeling in lm() (PR#2785)

Displaying 20 results from an estimated 10000 matches similar to: "Labeling in lm() (PR#2785)"

2005 Apr 21
1
Plots with lots of points (PR#7805)
Full_Name: Francisco Vera Version: 2.1.0 OS: Windows XP Submission from: (NULL) (129.252.16.42) I have this time series with 96000 data points which I am using R to analyze. The plots produced by some functions (like stl) were working fine in version 2.0.1, but the same plots are causing my machine to stop working all together in version 2.1.0. After trying several times, I uninstalled version
2015 Apr 23
3
[LLVMdev] Buildbot for Windows native LLVM/Clang testing
There are two unexpected failures in the check-all (this check-all runs with self-build-clang): Failing Tests (2): Clang Tools :: clang-tidy/clang-tidy-diff.cpp Clang Tools :: clang-tidy/file-filter.cpp Last log: http://lab.llvm.org:8011/builders/clang-x64-ninja-win7/builds/340/steps/ninja%20check%202/logs/stdio From: Yaron Keren [mailto:yaron.keren at gmail.com] Sent: Thursday, April
2007 Sep 14
1
Intercept in lm and in library(car): Anova
Hi I have two questions regarding the meaning of intercept outputs of lm. Question 1: In data set 1 (a fully-balanced design), the line with (Intercept) contains the overall mean, and the estimates contain the differences from the overall mean (matching those from model.tables). But in data set 2, the line with the intercept does not correspond to the overall mean and the estimates don't
2015 Apr 23
2
[LLVMdev] Buildbot for Windows native LLVM/Clang testing
I agree, it is great. I have some regression tests (check-all) failures on Windows locally. Does the buildbot show the same? On Thu, Apr 23, 2015 at 11:16 AM Yaron Keren <yaron.keren at gmail.com> wrote: > That's great to hear! > > 2015-04-23 12:08 GMT+03:00 Fedorova, Vera <vera.fedorova at intel.com>: > >> Hi All, >> >> >> >> This is
2007 Mar 20
2
Problem adjusting x-labels with bargraphCI
Hello: I'm having quite a bit of difficulty adjusting the x-labels using bargraphCI. I've tried using text and srt=45 to rotate the labels or mtext for 2 lines to break up the labels. However, using either method, I cannot line up the labels with the midpoints of the bars (they line up with some sort of tick mark that is off the midpoint of the bars). Any suggestions would be greatly
2009 Aug 30
2
RConsole processing crashes Rgui.exe
Using R 2.9.2 on Windows XP SP3. 1. Edit ~/Rconsole, and set font = TT Bitstream Vera Sans Mono 2. Start Rgui.exe 3. Go to Edit, GUI Preferfences 4. Rgui.exe crashes Rgui.exe does not crash if I do not access GUI Preferences (i.e., if I just use R), and it does correctly use Bitstream Vera Sans Mono as my font. Nor does it crash if I edit RConsole to set the font back to Lucida Console and
2005 Oct 05
1
Analyses of covariation with lme() or lm()
Hello all! I have a problem that calls for a better understanding, than mine, of how lme() uses the random part of the call. The dataset consists of eleven field trials (Trial) with three replicates (Block) and four fertiliser treatments (Treat). Analysing for example yield with lme() is easy: m1 <- lme(Yield ~ Treat, data=data, random =~1| Trial/Block) giving estimates of
2009 Nov 17
1
Define lm/glm object without evaluating them
For e.g. lm/glm type models I would like to separate model specification and model fitting and then only fit the models later 'when data arrives'. To be specific, I would like make a specification like m1 <- lm(rate~conc) m2 <- lm(rate~I(conc^2)) and then later I want to 'put data into' the objects and evaluate (fit the model), e.g. something like update(m1, data=Puromycin)
2010 Dec 21
1
lm() on a matrix of zoo series
I have a matrix of zoo series. each series is in a column. x <- as.yearmon(2000 + seq(0, 23)/12) # 24 months of data, lets make 20 sets of random data testData <- matrix(rnorm(480),ncol=20) # make a zoo object and columns will hold the 20 series TestZoo <- zoo(testData,order.by=x) # now run lm for just one series. m <- lm(TestZoo[,1]~time(TestZoo))$coeff[2] m time(TestZoo)
2014 Mar 28
1
Best zwave controller for MH
I (canadian) store has a deal on for the vera lite controller: http://www.tigerdirect.ca/applications/searchtools/item-Details.asp?EdpNo=8930107&sku=VEP-STARTER1 but this looks different than the vera lite green & white: http://www.amazon.com/Mi-Casa-Verde-VeraLite-Controller/dp/B007005364/ref=cm_cr_pr_product_top? and maybe there are more zwave controllers. Can someone (who is
2019 May 14
2
weakforced and GeoIP lookups
Hi Tobi, it should just work, but depends on the OS version. ./configure ?help tells you all the configure options, including: --with-maxminddb-includedir path to maxminddb include directory [default=auto] --with-maxminddb-libdir path to maxminddb library directory [default=auto] Neil > On 14 May 2019, at 17:44, Tobi via dovecot <dovecot at dovecot.org>
2015 Apr 23
2
[LLVMdev] Buildbot for Windows native LLVM/Clang testing
Hi All, This is to let you know that a new buildbot for Windows native LLVM/Clang testing is established: http://lab.llvm.org:8011/builders/clang-x64-ninja-win7 . Hardware + OS configuration is: Haswell desktop with Windows 7 + Visual Studio 2013 Update 4. It is hosted by Intel and hopefully will contribute to improve quality of the LLVM/Clang on Windows being developed in the LLVM community.
2015 Oct 02
3
transfer fsmo role using ldap
On 02/10/15 20:09, Yosel Lazaro Vera Gonzalez wrote: > > ----- Mensaje original ----- > De: "Rowland Penny" <rowlandpenny241155 at gmail.com> > Para: samba at lists.samba.org > Enviados: Viernes, 2 de Octubre 2015 3:54:04 > Asunto: Re: [Samba] transfer fsmo role using ldap > > On 02/10/15 04:27, Yosel Lazaro Vera Gonzalez wrote: >> !!!Regards >>
2002 Apr 08
1
factor labels in model.frame
Hello, model.frame changes the factor labels when na.action = na.omit. > f <- gl(3, 2, 6, paste('m', 1:3, sep = '')) > r <- c(NA, NA, 3:6) > mf <- model.frame(~ r + f, na.action = na.omit) > mf r f 3 3 m1 4 4 m1 5 5 m2 6 6 m2 But it seems like it should be this > mf r f 3 3 m2 4 4 m2 5 5 m3 6 6 m3 intead. How do I get the second mf? Thanks a lot,
2018 Jan 30
1
variable names in lm formula ~.
Well... ?terms.formula says: "data: a data frame from which the meaning of the special symbol . can be inferred. It is unused if there is no . in the formula." So this seems to me to be an obscure bug, as I have found no warning against this admittedly confusing but still, I think, legal syntax. Note: > d <- data.frame(log = runif(10), x = 1:10) > y <- rnorm(10,5) >
2019 May 14
2
weakforced and GeoIP lookups
Hi Tobi, This looks like you haven?t included the libmaxmind libraries before running configure. GeoIP support is only compiled in if it finds the right libs. This would be libmaxminddb-dev on Ubuntu for example. Neil >> Hi list >> >> hope it's okay to ask weakforced questions here as well, but I could not >> find a dedicated mailinglist for wforce. >>
2012 Sep 25
1
Bug or misunderstanding of par(pin)?
Dear all, I am currently trying to create a plot showing multiple single plots, for which the important issue is that the size of each plot region (not figure region!) has to be of a fixed dimension (in my case: width=1 inch, height= 0.87 inches). I tried to use "pin" to fix the plotting region to a specific size, but without success. The following example will visualize the problem:
2006 Mar 13
3
hfsc and dropped packets
Hi, I''m trying to get a handle on hfsc. Here is my configuration: root@jmnrouter:/jmn# tc class show dev vlan1 class hfsc 1: root class hfsc 1:1 parent 1: ls m1 0bit d 0us m2 225000bit ul m1 0bit d 0us m2 225000bit class hfsc 1:10 parent 1:1 rt m1 191000bit d 25.0ms m2 135000bit ls m1 0bit d 0us m2 135000bit ul m1 0bit d 0us m2 225000bit class hfsc 1:20 parent 1:1 rt m1 22008bit d
2006 Mar 13
2
FW: RE: .First functin
_____ From: Vera, Graciela : Insurance Services (BISCO) Sent: 10 March 2006 14:47 To: 'r-help-request@stat.math.ethz.ch' Subject: RE: .First functin I have not used R for some time. Please accept my apologies if my question has an obvious answer. I am trying to use R. For convenience and due to IT restrictions libraries additional to MASS have been stored in a different directory
2010 Jun 16
2
data frame
Dear list, I have the following problem. I have a data frame like this CLUSTER YEAR variable Delta R_pivot M1 2005 EC01 NA NA M1 2006 EC01 2 NA M1 2007 EC01 4 5 M2 2005