similar to: how to draw graphs within clickable hyperlink

Displaying 20 results from an estimated 2000 matches similar to: "how to draw graphs within clickable hyperlink"

2004 Dec 05
2
String manipulation---mixed case
Hello, Does anyone know of a "slick" way to get R to convert a string which is all upper case to a string where the first letter in each word is upper case and all others are lower case? I suspect the solution is to begin by parsing the string, convert the appropriate letters to upper and lower case using "toupper" and "tolower", and then to paste the pieces back
2004 Dec 02
16
How about a mascot for R?
R users, How come R doesn't have a mascot? Linux has one and so does LaTeX, so shouldn't R? I personally think that associating a "friendly face" with R would be a good thing for R (one letter names can be quite intimidating). I apologize if this is addressed in the FAQ. I searched the FAQ as well as the mailing list archives and checked ?mascot but to no avail. ;-)
2023 Mar 07
1
insert hyperlink into svg graphic
This was actually the first thing that ChatGPT debugged for me. The issue was that I was able to click on the link when I displayed the raw SVG in the browser (you can use that to test whether the syntax is even correct), but not when the svg displays inside a html page with the <img ...> tag. ChatGPT correctly identified the issue and suggested a solution using <object ...> tags
2004 Dec 11
2
Paths for Shell Scripts called from R
Hello list, I suspect this is more a linux question than an R question, but I'll describe my situation in case anyone here knows of an elegant solution. I'm using Sweave and R to create thousands of customized reports. Within an R loop, I have R create a table.tex file using the CAT function which, for each iteration, creates a unique table.tex file in a subdirectory of the directory
2023 Mar 08
1
insert hyperlink into svg graphic
On 3/7/23 13:12, Paul Murrell wrote: > Hi > > I think the main issue here is that you are *drawing* text on the > graphics device, so I would only expect to see literal XML text output > in the result. > ''' > > Hope that helps Thank you for your consideration of the matter, but that seems extraordinarily overly-complicated for the results of
2023 Mar 08
1
insert hyperlink into svg graphic
Hi On 8/03/23 15:27, Rusty Travis wrote: > On 3/7/23 13:12, Paul Murrell wrote: >> Hi >> >> I think the main issue here is that you are *drawing* text on the >> graphics device, so I would only expect to see literal XML text output >> in the result. >> ''' >> >> Hope that helps > > Thank you for your consideration of the
2007 Mar 06
2
SVG and tooltips, hyperlinks
Dear all, is there a good way to create SVG plots with R whose elements have titles (tooltips) or act as hyperlinks? I am using the RSvgDevice package, which works great - but it doesn't seem to support the notion that plot objects have titles or are act as hyperlinks, so I am helping myself by giving the objects funny unique colors and then postprocessing the .svg file. I wonder
2002 Oct 01
2
Does R have graphlets?
I've been experimenting some with the graphlets which S-Plus 6.1 has. Is there something similar in R? I've looked through documentations, and at SJava, but haven't found it. (If you don't know what a graphlet is, here's what it appears to be: a graphlet is a binary file that encodes information about a graph. Java uses spgraph.jar to display the graph and allow certain
2004 Jan 12
1
graphlets -- more
I have already recieved two very helpful replies. Let me describe the problem we are trying to solve more clearly -- one of the suggestions was along a line I'd never thought of, and I'd like to encourage more! R is being used in a microarray/QC situation, in essentially a batch mode. The applications that are "running the show" in terms of interacting with the user's
2006 Jul 07
0
graphlets
Naras presented something with similar functionalities using SVG a couple of years ago, and since then the svgdevice package had been made available. I do not know SVG myself, but according to Naras, it's all possible. Best, Andy From: Terry Therneau > > I have an application where the Splus graphlets() package > would work very well, and would like to know if there is any
2004 Sep 12
1
Discrepency between R and MlwiN
When playing around fitting unconditional growth models using R and MlwiN today, I produced two different sets of estimates that I can't reconcile and wondered if anyone here has an idea: The data is two-level repeated measures data with measures nested within child. There are two measures per child. I've fit an unconditional growth model as in Singer and Willet (2003) that allows for
2006 Jan 23
4
an image that is a clickable link?
Hi, How do I make an image that is a clickable link the rails way? Is there a view helper for this? Thanks, Peter
2009 Apr 01
3
make a <tr>clickable
I would like to make an entire table row clickable so the user will be directed to another url. If i was using hand written javascript i would just add an onclick to the <tr>, but i want to use rails routes and to be able to pass in parameters from ruby. What is the best way to accomplish this? <tr onclick = <%= link_to my_route_path %> > <td>content</td></tr>
2006 Sep 25
1
Rows of a data frame to matrix
useRs, I have a data frame where four of the columns of the data frame represent the values of a two-by-two matrix. I'd like to, row-by-row, go through the data frame and use the four columns, in matrix form, to perform calculations necessary to create new values for variables in the data frame. My first idea was to use apply: apply(as.array(data.frame[,1:4]), 1, matrix, nrow=2) Though
2011 Feb 17
2
Dependency on R-Forge Package
In building a package, is it possible to make the package depend upon another package that is only available on R-Forge (not CRAN). For example, by doing something in the DESCRIPTION file I'd like to add a dependency to my package such that when the user install my package it will automatically install this other package from R-forge as well. Any help greatly appreciated. Damian
2023 Mar 07
1
insert hyperlink into svg graphic
Greetings, I am creating plots of weather data and wish to include a link to the data source into a title() object in the plot. My syntax must be wrong though, as the hyperlink doesn't display, just the text and tags. > svg("/tmp/temps.svg", width=9, height=6) > #plot created here > title(sub="produced by Rusty Travis? \nusing data from <a
2013 Mar 15
1
Creating a hyperlink in a csv file
Hi, I was wondering if it is possible to create a hyperlink in a csv file using R code and some package. For example, in the following code: links <- cbind(rep('Click for Google',3),"http://www.google.com") write.table(links,'test.csv',sep=',',row.names=F,col.names=F) the web address should be linked to 'Click for Google'. many thanks!
2004 May 03
1
installed.packages hyperlink wrong in two spots (PR#6850)
Full_Name: Kevin Wright Version: 1.9.0 OS: Windows 2000 Submission from: (NULL) (170.54.59.160) The html help file for the 'library' function contains this sentence: Note that installed.packages() returns... The 'installed.packages' hyperlink points to 'installed.packages.html'. The latter file does not exist for me. I suspect the link should be to
2017 Oct 24
3
draw a circle with a gradient fill
Hi all,I would like to draw a simple circle where the color gradient follows the rule color = 1/(r^2) where r is the distance from the circle. I would also like to add a color bar with values going from -40 to -110 (and associate those with the color gradient that fills the circle). So far I experiemented with draw circle
2000 Dec 15
1
BT sues Prodigy over hyperlink patent !!!
Not related to Vorbis, but it shows how software patents can be abused to the point where it becomes absurd... http://www.idg.net/ic_316584_1794_1-483.html BTW I used a hyperlink here... BT can sue me... ;-) Greetings, Aleksandar --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to