similar to: Aquamacs Preferences not showing, windows inaccessible, Scrolling not possible !!!

Displaying 20 results from an estimated 800 matches similar to: "Aquamacs Preferences not showing, windows inaccessible, Scrolling not possible !!!"

2017 Sep 11
2
M-x R gives no choice of starting dir
Hi, I experienced a sudden change in the behavior of M-x R in not giving me the choice where to start R. May be that I botched my preferences. I am using Aquamacs 3.3 on MacOS 10.12.6 Christian -- Christian Hoffmann Rigiblickstrasse 15b CH-8915 Hausen am Albis Switzerland Telefon +41-(0)44-7640853
2012 Oct 22
4
help stored permanently
Hi, Each > help.start() generates a new tree of the R help system, somewhere in 127.0.0.1:xxx, each xxx being difeerent. This tree disappears when exiting R. How can the current help tree copied to a permanent place for reference outside a running R? This would be practical for not having to enter M-x R . TIA --Christian -- Christian W. Hoffmann, CH - 8915 Hausen am Albis, Switzerland
2017 Dec 20
1
[ESS] R window: Text is read only (: Another round :)
Dear All Working along in R (Emacs {Aquamacs}, ESS ) usually I am getting a long R buffer with many rows. To reduce its length, I used to select backwards and delete those unnecessary rows. Now I cannot do that, only C-k allows single lines to be deleted. the mode line says 'Text is read-only *R*>'. Both R and ESS are up to date. Aquamacs 3.3 GNU Emacs 25.1.1
2012 Sep 15
2
R CMD check and browser
Hi, Every time I do system("R CMD check mypackckage" the process executes a help.start(). Why does this happen? Cheers Christian -- Christian W. Hoffmann, CH - 8915 Hausen am Albis, Switzerland Rigiblickstrasse 15 b, Tel.+41-44-7640853 c-w.hoffmann at sunrise.ch, christian at echoffmann.ch, www.echoffmann.ch
2018 Jun 01
3
values of list of variable names
Hi, I have searched the documentations of eval, substitute, expression, and I cannot make work something like the values of a list of variable names: lis <- ls(pattern="pr") # all variables with names containing 'pr' What is the mantra giving me the _values_ of the variables whose names are contained in 'lis'. eval(parse(ls(pattern="pr"))) will not do
2012 Aug 28
1
Package cwhmisc and problems
Hi, I have revised my package cwhmisc and want to re-submit it (meeting a deadline soon). One big stumbling stone is the 'sudden' appearance of > sessionInfo() R version 2.15.1 (2012-06-22) Platform: x86_64-apple-darwin9.8.0/x86_64 (64-bit) locale: [1] C attached base packages: [1] tools tcltk stats4 splines parallel datasets compiler [8] graphics grDevices
2012 Oct 17
3
history and readline, Mac OSX
Hi, Obviously history() will only work with readline installed: so far I have not been able to find working advice for installing and enabling readline on MacOSX. > sessionInfo() R version 2.15.1 (2012-06-22) Platform: x86_64-apple-darwin9.8.0/x86_64 (64-bit) locale: [1] C attached base packages: [1] tools tcltk stats4 splines parallel datasets compiler [8] graphics
2012 Oct 22
1
quartz.save of the FAQ (Mac)
Hi, In the FAQ for Mac http://cran.r-project.org/bin/macosx/RMacOSX-FAQ.html there is 7.2 Saving the image You can can (???) the content of the quartz device window into a PDF file. This is not explained! This is a very simple way to export high quality graphics from R into other applications on Mac OS X graphics is PDF based (so are almost all applications available). However, this process
2012 Sep 24
1
Question lattice SplomT
Dear Deepayan Sarkar, I have (again) a question concerning "panel" and my function "SplomT", see attachments. Some time ago you helped me to write this function, thanks again. I have used it to great advantage in my statistics instructions. Now the problem I encounter is that the .pdf figure generated in Sweave consists of one extra empty page at the start. This prevents
2018 Apr 02
1
lintr error
library("lintr") Error: package or namespace load failed for 'lintr' in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]): there is no package called 'magrittr' library("magrittr") Error in library("magrittr") : there is no package called 'magrittr' session.Info(): R version 3.4.4 (2018-03-15) Platform:
2013 Oct 14
1
there is no package called 'boot'
Hi, R CMD mypackage /Users/hoffmann/R/cwhmisc check --as-cran gives me * checking Rd cross-references ... WARNING Error in find.package(package, lib.loc) : there is no package called 'boot' although there is no textual reference to 'boot' in my /R and /man within /cwhmisc nor any file of that name. How could I possibly find the culprit? TIA C. sessionInfo() > R
2012 Nov 14
1
install own package ?
what happens here: > install.packages("/Users/hoffmann/R/cwhmisc_4.0.tar.gz",repos = NULL) Error: file '/Users/hoffmann/R/cwhmisc_4.0.tar.gz' is not an OS X binary package > sessionInfo() R version 2.15.1 (2012-06-22) Platform: x86_64-apple-darwin9.8.0/x86_64 (64-bit) locale: [1] C attached base packages: [1] tools tcltk stats4 splines parallel
2012 Oct 10
0
history() does not work? 2
Hi, > history() gives Error in savehistory(file) : no history available to save although I can scroll throu history with C^uparrow an C^downarrow. How can I make history() work and/or show the current history in a *file*, so that I can choose from previous commands? The notion of having readline enabled: How can I do that on mac osx? I work with R version 2.15.1 (2012-06-22) Platform:
2012 Oct 10
2
history() does not work?
Hi, > history() gives Error in savehistory(file) : no history available to save although I can scroll throu history with C^uparrow an C^downarrow. How can I make history() work and/or show the current history in a file, so that I can choose from previous commands? The web did not throw up anything useful. TIA --Christian -- Christian W. Hoffmann, CH - 8915 Hausen am Albis,
2012 Oct 10
5
Contacting Delphi ??
What does the sudden appearance of "Contacting Delphi ......the oracle is unavailable. We apologize for any inconvenience." mean? A bug? It appears at plotting. Thanks Christian -- Christian W. Hoffmann, CH - 8915 Hausen am Albis, Switzerland Rigiblickstrasse 15 b, Tel.+41-44-7640853 c-w.hoffmann at sunrise.ch, christian at echoffmann.ch, www.echoffmann.ch
2012 Oct 08
2
device error pdf
Hi, Iwrote 'pdfc' in analogy to 'lpr': pdfc <- function (file = "Rplot.pdf") { current.device <- dev.cur() dev.off(dev.copy(device = pdf, file = file, ...)) dev.set(current.device) print(paste(file, "generated.")) } lpr <- function (object, file = "Rplotlpr.ps", ...) { if (missing(object)) { current.device <-
2008 Dec 05
1
How to retrieve a method
Hi there, I am interested in the inner workings of wilcox.test: > wilcox.test function (x, ...) UseMethod("wilcox.test") <environment: namespace:stats> how can I get at the code, if it is R-code? For Methods one should be able to learn what extension to use, but here default or such do not help. Is there a wayplot.default to learn which different versions of
2008 Oct 23
2
What editors can I get R in Mac OS X to talk to?
All, Apologies if this was already answered... I couldn't find an answer that specifically addressed Mac OS instead of either windows or linux. I use "aquamacs emacs" as my text editor. It is essentially Xemacs with a GUI that looks closer to standard Mac GUIs, as far as I can tell. I installed the GUI-friendly Mac version of R. I can have R choose the aquamacs as the editor
2006 Apr 05
1
Installing Rails for emacs on OSX - emacs newbie
I''m a newbie to emacs trying to set up emacs Rails on a clean emacs installation. I''m using Aquamacs: http://aquamacs.org/. Basically, I''ve gotten to the part where I have to install the cedet package to install ECB to install Rails to ? you get the idea. I''ve forgotten all of my feeble Linux commands and have no idea what I need to do to install the packages,
2006 Jun 30
0
Cannot start Webrick under Aquamacs
I am running Aquamacs 0.9.9d on OSX Tiger on an Intel Mac. Got ecb, rails.el mmm-mode, etc working great. But when I start Webrick (from the Rails menu) it immediately stops. I can get into shell mode and start Webrick from there. Everything I have running under Emacs on Debian Sarge is working except for Webrick. Any ideas/pointers? Thanks, -bakki