search for: winedit

Displaying 13 results from an estimated 13 matches for "winedit".

2003 Dec 16
2
Winedit and R
Hi all, I am trying to install add-on in R (rw1070) to work with WinEdit. Libraries Swinregistry and Rwinedt have been installed via "Install Package(s) from local zip files" from R. However, when I run library(Rwinedt) I get the following messages: > library(Rwinedt) Loading required package: SWinRegistry Error in loadNamespace(name) : package `methods...
2005 Aug 04
1
Problem when pasting from Winedit into Rgui
After upgrading to R 2.1.1, the usual paste-and-go from Winedit seems to not work anymore. I try installing the last 'RWinEdt_1.7-3' edition, but with no more result. After selecting the program lines to submit, I click on the 'paste' icon and nothing happens in the R gui (a subliminal, flashing move in the edition menu...). Idem for 'sourc...
2005 May 10
5
converting an ASCII file to a matrix
Dear R-WinEdit users, I got a simple question, but somehow I cannot find the answer, although I have tried a lot! I got an ASCII-file and I want to import it into R, so that every character is defined by [i;j]. The rows are not of the same length. the file looks like the following shortened abstract example:...
2005 Nov 26
1
Using an editor with R
Hello, I changed the setting in options$editor to allow me to use my favorite editor. In R 2.1.1 on Windows XP, I entered at the command line: options(editor="c:\\program files\\winedit\\winedit.exe") When I edited a function, say test, using fix(test), the editor opened perfectly. But, when I saved the file and closed the editor, the R gui screen was white, blank, and completely unresponsive. The only thing I could do was close R by clicking on the "X" in the up...
2014 Mar 28
3
Tilde
Buenas para todos, tengo instalado r studio en windows y mi compilador de latex es winedit. En rstudio para Rnw no me acepta la tilde directamente solo con /' como hacer que acpte la tilde en Rnw siendo q en text acpeta sin problemas? [[alternative HTML version deleted]]
2002 Dec 04
1
R-Winedt
Hello: I installed R-WinEdit according to the instructions, including those for setting the editor and pager options. Doesn''t seem to work--when I try to edit a file, I get the following: > > options(editor="\"c:/program files/winedt/winedt\" -c=\"R-WinEdt-edit\" > -e=r.ini -V&q...
2007 Sep 10
1
RWinEdt installation problems with Vista
Hi, I was trying to install the package"RWinEdt" in my computer with Vista OS. Once I finished the installation, R just cannot load this library at all, reporting some error information. I reinstalled R and Winedit and reloaded this package. RWinEdt seemed to register in the computer but never work again. I searched some related information on internet. I did try using administer privilege to install R and Winedit. Ans I also opened it by "run as administrator". The problem still insisted. R always...
2003 Mar 24
9
Scripting with an external editor
I've had time to return to the "external editor" project. The following function does almost what I want, which is to allow an external editor to feed command lines to R. ext.editor<-function(editor) { ext.input<-pipe(editor,"r") eval(parse(ext.input)) close(ext.input) } While the description of parse() indicates that it should parse input line by line, the
2002 Nov 21
1
AW: Improving R Editing: New JEdit Edit Mode for R
Hi Daniel, > Do you have experience how JEdit compares to other > R-capable editors like e.g. WinEdt? Does it offer something like WinEdt's > integration with the Windows R-gui? I have never tried out WinEdit but after reading your message I took a quick glance at their homepage. It would not be useful for JEdit to implement the provided interaction with R-GUI since JEdit has to work on several platforms. But creating a button or shortcut for sending a complete file / line / selection of code to R (t...
2011 Jan 28
6
R-/Text-editor for Windows?
Tinn-R (http://www.sciviews.org/Tinn-R/) is one of the topmost suggestions when googling an R-(text-)editor for Windows. However, to me it appears dissappointing that Tinn-R does not handle utf-8 (mac-roman, or any other) encoded R-scripts or, in general, text files. Besides Emacs and the R built-in editor, could you recommend a good editor for Windows, even some commmercial for a small
2012 Aug 11
2
Stopping all code execution when ANY error occurs (OR error handling without try/tryCatch)
Hi all, I often run a bunch of code with Run Selection, and, after it's done running, I find there have been like 20 errors, all due to an error that occurred early in my code, which caused problems from there on. (I must then scroll up through lots of code to find it.) What I would like is for R to stop executing when an error occurs. I am aware of a few solutions: 1. Put all the code in a
2001 Nov 23
4
Are you experienced in SAS and R as well? Which of these would you recommend?
Hello! Disapointed about SPSS I have to choose another statistic program. And altough I sympathise with the idea of a non-commercial software-project like R and I like the spirit of the R community (and of course I am not keen on paying 150$ to SAS for a one-year students license), I will probably buy SAS, because people I will work with use SAS and I want a close cooperation with them. Besides I
2012 Mar 25
2
avoiding for loops
I have data that looks like this: > df1 group id 1 red A 2 red B 3 red C 4 blue D 5 blue E 6 blue F I want a list of the groups containing vectors with the ids. I am avoiding subset(), as it is only recommended for interactive use. Here's what I have so far: df1 <- data.frame(group=c("red", "red", "red", "blue",