Displaying 20 results from an estimated 10000 matches similar to: "Clipboard connections (PR#8668)"
2007 Jan 12
1
R editor vs. Tinn-R
Have you used Tinn-R and what landmines await the inexperienced?
I could not understand why a script that used to work stopped working.
Look at these two scenarios
I opened an excel spreadsheet and copied several cells to the clipboard
Then Scenario 1
Executed from Tinn-R
> prelim<-read.delim("clipboard")
> str(prelim)
'data.frame': 0 obs. of 1 variable:
$
2003 Nov 08
5
accessing windows clipboard from load and save (PR#4999)
Full_Name: Gabor Grothendieck
Version: 1.7.1
OS: Windows 2000
Submission from: (NULL) (207.35.143.81)
save(x,ascii=TRUE,file("clipboard"))
works but
load(file("clipboard"))
does not.
Even better would be if
save(x,ascii=TRUE,"clipboard")
and
load("clipboard")
worked as that would provide consistency with
2011 Aug 04
1
Tinn-R problem: unable to send code to R
The problem mentioned in the 06 Dec 2010 email below still occurs with
Tinn-R (v.2.3.7.1) when highlighting a string of code, copying to the
clipboard, and trying to send to Rgui via Shift+Ctrl+Q.
I can copy 1 line of code to the clipboard and send it to Rgui with
Shift+CTRL+Q. This fails with 2 or more lines of code, generating the
error:
Error in source(.trPaths[5], echo = TRUE,
2006 Feb 04
3
R command line: need intelligent command history recall?
Hi all,
I am not sure if this feature exists in the R-console command line prompt:
In Matlab, if I want to enter a command which is similar to what I have
entered before,
I can enter a few prefix, then press "->", the previous command that matches
with this prefix will then appear on this command line, and it saves a lot
of our time.
For example:
> abline(lm(new~old))
>
2013 Mar 14
1
How to copy current line in Tinn-R
Hello All,
A very simple question about Tinn-R. I am able to use the send line
shortcut, but I want to be able to just copy the current line to the
clipboard and then paste in the current document or somewhere else.
It's so tedious to select the whole line and then copy it.
Thanks
2006 May 23
1
after identify labels dissapear XP
Greetings:
Using 'identify' to label points on a plot works just fine. However, when
saving under 'metafile' or using the clipboard the labels dissapear. I
believe it's an SDI issue. I am running last R with last Tinn-r under XP up
to date. Anything I can do besides going back to MDI :-)?
Thanks,
Mihai Nica, ABD
Jackson State University
ITT Tech Instructor
170 East Griffith
2008 Feb 11
1
WG: Tinn-R not working well with latest R
I am in R command window and just make Crt+V.
Corinna
-----Ursprüngliche Nachricht-----
Von: Farrel Buchinsky [mailto:fbuchins@wpahs.org]
Gesendet: Mo 11.02.2008 21:16
An: Schmitt, Corinna
Betreff: Re: Tinn-R not working well with latest R
I can easily get R to open without an error. I simply removed the Tinn-R
related lines from the Rprofile.site file
C:\Program
2006 May 04
1
a clipboard problem while using R2HTML
I followed the examples of previous posts about R2HTML to practice
exporting a data to a clipboard, but the result is not as smooth as I
had expected:
library(R2HTML)
data(iris)
HTML(iris, file("clipboard","w"), append=FALSE)
I got an error message:
> HTML(iris, file("clipboard","w"), append=FALSE)
Error in file("clipboard", "w")
2003 Nov 05
1
save(iris,file="clipboard",ascii=TRUE)
Is this a bug? I thought that "clipboard" could always be substituted
for a filename when dealing with ASCII files.
> data(iris)
> save(iris,ascii=TRUE,file="clipboard")
Error in file(file, "wb") : `mode' for the clipboard must be `r' or `w'
Also this (where gclip is a utility found at unxutils.sourceforge.net
that copies its standard input to the
2009 Sep 18
1
Reading clipboard with read.delim("clipboard") crash (PR#13957)
Full_Name: Liam Gretton
Version: 2.9.2
OS: openSUSE 11.1 (x86_64)
Submission from: (NULL) (143.210.13.77)
Reading a large number of rows of delimited data via the clipboard results in a
segfault or double free error. I've tested copying from various applications,
but gedit will do.
This problem exists in the openSUSE-supplied 2.8.1, I've just built 2.9.2 to see
if it's still there,
2001 Dec 04
2
Agent Clipboard issues revisited
Howdy,
It seems that there's a bit of a problem with Agent accessing the KDE
Clipboard through Wine. (Or is it the X Clipboard?)
If I start a managed wine Agent session and try to copy from Agent,
the copied info shows up in the KDE Clipboard. If I try to paste
highlighted text from the console into Agent, it works also. Once.
The second (and subsequent tries) don't work. It
2019 May 23
2
writing Unicode text to the Windows clipboard
Hello,
I'm interested in moving text from and to the clipboard that cannot
necessarily be represented in the native encoding. So, really, this is
about Windows.
I can successfully read from the clipboard by specifying the format that
corresponds to unicode text.
From R >=2.7.0, it seems you should also be able to write unicode text
to the Windows clipboard.
2006 Oct 29
2
write to clipboard under Linux
Dear all,
I am trying to use the clipboard when writing a table.
Typing:
write.table(object, file="clipboard")
leads to the message:
Fehler in file(file, ifelse(append, "a", "w")) :
'mode' f?r die Zwischenablage muss unter Unix 'r' sein
My interpretation is that I am not allowed to write into the
clipboard from a program called from R. Is there a
2009 Apr 28
2
problems with clipboard
Hi I'm a mac user. I have problems loading data from mac excel in R.
I'm using these script:
>library(utils)
>data2 <- read.table(file("clipboard"), header =T, sep ="\t")
____but this is the message that I have from R_____
Error in open.connection(file, "r") : cannot open the connection
In addition: Warning message:
In open.connection(file,
2007 Dec 03
1
Fwd: source('clipboard')
In the code below the first source command works fine, but the second
does not, as can be seen from the error message. Is there a way to
have the second command work?
I am using R 2.6.1 on Windows Vista.
(The command that is in the clipboard is just "x <- 3")
> source("clipboard", echo = F)
> source("clipboard", echo = T)
Error in file(srcfile$filename,
2006 Aug 26
2
Importing data from clipboard on Mac OSX
Dear R users,
I am trying to get data from the clipboard into R on MacOSX. I tried
the following, but got an error message:
read.delim("clipboard")
Error in file(file, "r") : unable to open connection
In addition: Warning message:
unable to contact X11 display
Obviously, I'm not running R using X11. I'm wondering, can I import
data from the clipboard on MacosX?
2009 Apr 17
2
win32-clipboard issues and support for additional formats
Hi,
Currently the GetClipboardData() function is declared in windows-pr so that
it returns a pointer. I guess my reasoning was that I was only worried about
dealing with text at the time, so it was the easiest thing to do. But, I''d
like to support more formats beyond text, i.e. images.
However, this can cause a segfault. If you copy a jpeg image to the
clipboard first, for example, and
2006 Aug 03
1
[ win32utils-Bugs-5287 ] v 0.4.1 - Clipboard.set_data causes Segmentation fault
Bugs item #5287, was opened at 2006-08-03 11:34
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=411&aid=5287&group_id=85
Category: win32-clipboard
Group: Code
Status: Open
Resolution: None
Priority: 3
Submitted By: Nobody (None)
Assigned to: Nobody (None)
Summary: v 0.4.1 - Clipboard.set_data causes Segmentation fault
Initial Comment:
Whenever
2007 Mar 19
1
Windows Clipboard and WINE
I have a book cataloging program that I have used for several years and
I am extremely pleased with it. It's one of the main reasons I still
use windows primarily. I'm looking at running it under WINE and I am
having trouble with the registration of the license key. The license
key is coped to the Windows clipboard and the the program reads it from
the clipboard. When I try to
2000 Mar 23
1
clipboard
Hi,
if we do something like that for windows (which might be useful) we
should do the same for X, i.e., use the X clipboard in the same way.
Not that I know how to access it but it shouldn't be too hard to find
out. Both would probably come down to having something like
read.table(text=foo, ...)
along with
foo <- getClipboard(...)
reading a text string from the X or Windows