similar to: Exporting tables to RTF?

Displaying 20 results from an estimated 200 matches similar to: "Exporting tables to RTF?"

2004 Sep 20
2
Getting the real names of variables within functions
Greetings. These days I find myself writing a lot of functions to handle routine things. One of these is a function to create a scatterplot of variables and draw a lowessed line so I can get some idea if there's any relationship between them. lowessed.plot <- function(x, y) { plot(x, y) lines(lowess(x, y)) } However, there's a slight problem: the plot axes come out labeled
2004 Jul 20
5
Precision in R
Greetings. I'm trying to recreate in R some regression models I've done in SAS, but I'm not getting the same results. My advisor suspects this may be due to differences in precision between R and SAS. Does anyone know where I can find specifications for R's type double? (It doesn't seem to be in the R Language Definition.) Thanks in advance for any help anyone can
2004 Nov 03
4
Newbie question: plotting regression models
Greetings. Is there any way to get R to take a regression model object and draw a plot of the regression function? How about overlaying that plot over a scatterplot of the actual data? Thanks in advance for any help anyone can provide. Aaron ----- Aaron Solomon?? (??ben Saul Joseph??) ??Adelman E-mail??: ??adelmaas at musc.edu Web site??: ??http??://??people.musc.edu??/??~adelmaas??/??
2008 Mar 06
1
Tcl/Tk not working on Mac OS X
Greetings. Yesterday I decided to try out Rcmdr, but it refused to load. I traced the problem to the library tcltk, which when I tried to load it told me this: > > library(tcltk) > Loading Tcl/Tk interface ... Error in fun(...) : > Can't find a usable init.tcl in the following directories: > @TCL_IN_FRAMEWORK@ @TCL_IN_FRAMEWORK@ > > > > This probably
2012 Aug 18
4
Spaced text (from Digest)
On the suggestion for double-spaces, I share the general 'oh no'. I see an explosion of people with iPads etc trying out Markdown in education because formatting sucks on iPads. They struggle with needing new lines (see recent post for an example). In short, they struggle with white-space (invisible) mark-up. Added to that, frequently cut and paste leaves double spaces (eg in BBEdit
2007 Jan 28
1
needs must make MD ignore my PHP
I need to exclude arbitrary chunks of my documents from Markdown parsing, because my documents are littered with <?php blah blah ?>, and a few other oddities. These blocks get gifted with unwanted markup by Markdown: <?php blah blah ?> becomes <p><?php blah blah ?></p> If I can't make it stop that, it's a dealbreaker for me in an otherwise
2005 Dec 16
1
AppleScript commands don't execute until mouse over console window (PR#8405)
Full_Name: Jonathan Paisley Version: 2.2.0 OS: Mac OS X 10.4.3 Submission from: (NULL) (81.178.69.159) I am sending commands to R via AppleScript (specifically, from SubEthaEdit to instruct it to source the file I'm currently editing). R doesn't respond tothe AppleScript until I move the mouse over R's console window. The following patch to the Mac GUI (against current svn trunk)
2013 Feb 05
1
[LLVMdev] Does Apple's osacompile use LLVM?
I hope this is the right mailing list to ask this question. If not, please let me know where this question should be asked. Does anyone know if Apple's "osacompile" (Applescript compiler) use LLVM? If so, is there a way to compile Applescript to llvm-as? Thank you. Richard Catlin -------------- next part -------------- An HTML attachment was scrubbed... URL:
2011 Jan 01
2
Applescript and .exe?
Hi there! I've used Wine a couple of years ago when I used Ubuntu as OS. Nowadays I have a Mac and recently installed Wine on it. My question is, how do I fix so that I don't have to use the terminal to start an .exe program? Just enter a script in Applescript, save it as an application and start it through that? I've googled and found some scripts but none of them works for me.
2006 Aug 04
2
Generating RTF documents?
Hi, I need to implement some RTF export for a customer. According to some "templates", i generate RTF documents, filling data coming from models. It''s pretty much like a mailmerge, but in *nix/ruby world. Also, customer would like (in the future) to upload himself the templates, so he can modify them by his own. Can anyone advice me on an elegant solution? Thank you,
2007 Oct 25
0
Can't use ruby-rtf gem
I''m new to ruby, rails, and gems, and trying to add an feature to a RoR''s app so users can export a file, and then edit it using Microsoft''s Word. (This is an app where telling folks to use OpenOffice or some other editor isn''t really an option). So I researched a little and think that using ruby-rtf to create rtf files is the best way to go. However, I can
2013 Feb 13
1
plot rtf in landscape orintation
Hello All, I 'm trying to plot R graph in landscape orientation in a .rtf file. i 'm using library(rtf) for this. do we have any option in addPlot() function to rotate the orientation of the rtf file? Thank you, Deepthi BM PGDB-10-10-04 Institute of Bioinformatics and Applied Biotechnology Biotech Park, Electronic City, Phase I, Bengaluru-560100
2011 Aug 30
1
Creating ODS RTF-style output in R XXXX
Hello everyone, I have been using the sink() function as follows: x<-rnorm(100) sink("C:\\Users\\dan\\Desktop\\Current Events\\myhw.txt", append=TRUE,split=TRUE) m1<-c(Mean=mean(x),SD=sd(x),Min=min(x),Max=max(x)) m1 sink() === Is it possible to create tabular style output very much like the ODS RTF STYLE=JOURNAL protocol in SAS (which returns a nicely formatted table with
2010 Oct 28
0
Fxruby - file (pdf, rtf, doc) viewer
Hi all, I have interesting thing to do. I want to create widget for displaying few formats of files (pdf, rtf, doc). Probably it will works like pdf viewer and all other files I will convert to pdf so if User want to open rtf then I convert rtf to pdf then display on screen (this I think will be the easier way). The thing is that I don''t know exactly how to create this kind of widget.
2011 Nov 10
2
Convert RTF to ANSI color codes
Anyone have a script or utility to convert an RTF file to ANSI? The main idea here is to preserve the color codes that are specified in the RTF file, so they can be displayed easily in a terminal window.
2009 Oct 28
1
write to RTF format - possible?
Hi everybody, To write a .txt file I use write.table() Is there a way to write to a .rtf file as well? TIA Mark ??????????????????????????????????????? Mark Heckmann Dipl. Wirt.-Ing. cand. Psych. Vorstra?e 93 B01 28359 Bremen Blog: www.markheckmann.de R-Blog: http://ryouready.wordpress.com
2009 Dec 12
1
Antw: Export R output to Word/RTF?
I am using SWord from statconn: http://rcom.univie.ac.at/download.html It allows you to put r-commands into Word (similar to odfWeave). Output is directed to Word including figures and tables. It is still a beta-version but works fine. Frank Bloos >>> Wenjie Lee <wenjieleemaillist@gmail.com> 12.12.2009 00:28 >>> Hi R Experts, I'm aware of pdf(), jpeg(),...
2009 Dec 11
3
Export R output to Word/RTF?
Hi R Experts, I'm aware of pdf(), jpeg(),... functions. But, 1. Is it also possible to export graphs directly to word or RTF? I use to copy and paste graphs but resolutions are not so great. 2. Also, is it possible to export your out to word file? I use sink() function to export it text files. Any suggestions, thanks, Wenjie Lee [[alternative HTML version deleted]]
2017 Sep 22
1
Embedding PDF into RTF document via R language
R 3.4.1 OS X and Windows Colleagues I have a complicated problem that includes several components: R RTF PDF Using R (and a slew of RTF commands), I assemble a text document with an RTF extension. The document contains text, tables, and images (JPEG format, previously created with R). To ?import? the JPEG images into the document, I use the following R code: cat("\\pard\\qc
2004 Jan 08
5
Dialing the Phone from OS X Address Book with AppleScript, XML-RPC, PHP and Asterisk
I run an Apple OS X workstation and I've got a server on the same LAN that's both a webserver and an Asterisk PBX. I wanted to be able to originate calls in the OS X Address Book application, and have Asterisk dial them and connect them to the phone on my desk. I've assembled a system that uses AppleScript to connect, via XML-RPC, to a web application that, in turn, connects to