Displaying 20 results from an estimated 2000 matches similar to: "installed.packages hyperlink wrong in two spots (PR#6850)"
2023 Mar 07
2
insert hyperlink into svg graphic
Perhaps this thread on stackoverflow (from a search on "include hyperlink
in svg graphic") may be of use:
https://stackoverflow.com/questions/41970535/a-hyperlink-in-svg-use
Cheers,
Bert
On Tue, Mar 7, 2023 at 12:34?AM Rusty Travis <rusytravis19 at gmail.com> wrote:
> Greetings,
>
> I am creating plots of weather data and wish to include a link to the
> data source
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
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
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 Apr 26
2
Can a hyperlink be placed, thorugh R programming, on a graph?
Hi,
If I use
x<-1:10
y<-rnorm(10,0,1)
### pdf(file="c:\\aldi\\test.pdf")
plot(x,y)
segments(x,y,x+2,y+2)
segments(x,y,x+0.5,y+0.5,col=3)
### dev.off()
### q()
Is there a way that I can imbed in the graph plot for each point defined
by x to x+0.5 and y to y+0.5 (and colored in green) a different hyperlink?
For example point one (together with the green tail) will have the
2004 Apr 23
1
Weirdness with choose.files on Microsoft Windows (PR#6818)
Full_Name: Kevin Wright
Version: 1.8.0
OS: Windows 95
Submission from: (NULL) (170.54.59.160)
This bug also happens to me using R 1.9.0 on Windows 2000.
Took me a long time to create a reproducible bug, but I think I have succeeded.
I suspect my test function has a bug, but I don't see anything wrong. Plus, the
bug only shows up when selecting certain filenames. Nearest I can speculate,
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!
2013 Mar 15
2
Writing a hyperlink to 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),"google search address goes here")
## R Mailing list blocks if I put the actual web address here
write.table(links,'test.csv',
sep=',',row.names=F,col.names=F)
the web address
2004 Oct 07
3
How to use alpha transparency channel for colors?
The release notes for R 2.0.0 states:
It is now possible to specify colours with a full alpha
transparency channel via the new 'alpha' argument to the
rgb() and hsv() functions, or as a string of the form "#RRGGBBAA".
NOTE: most devices draw nothing if a colour is not opaque,
but PDF and Quartz devices will render semitransparent colours.
A new argument
2005 Apr 18
2
Why no BIC.default function?
I'm using R 2.0.1.
I looked in the email archives but didn't see anything on this topic.
I've noticed a surprising (to me) difference between AIC and BIC:
> methods("AIC")
[1] AIC.default* AIC.logLik*
> methods("BIC")
[1] BIC.gls* BIC.lm* BIC.lme* BIC.lmList* BIC.logLik* BIC.nls*
The BIC.gls BIC.lm BIC.lme BIC.lmList and BIC.nls functions appear
2005 Mar 04
2
how to draw graphs within clickable hyperlink
Hi all
I want to draw a graph containing points and edges. Package graphics
could do this. However I want to make each those points and edges
clickable with a hyperlink on them.
Anybody know how to do this?
Thanks very much.
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
2005 Jul 08
1
Suggestion: Help users sort data frames
I've noticed that a frequently asked question on R-help is how to sort a
data frame by multiple columns. Since this question is asked so often,
making this task easier for users seems a worthwhile goal.
At a minimum, the following changes to the documentation would surely be
helpful and reduce email postings to R-help:
1. In the "See Also" section of the help page for
2011 Dec 05
3
adding hyperlinked text to pdf plot
Howdy,
I have read that if you put a URL in the text of a plot being saved
into pdf, the result is a functional hyperlink. I am interested in
having text in a plot that is linked to a URL, but I would like the
text to be something other than the URL. Is this possible? Thank you.
- Fincher
2004 Nov 03
2
Suggested color schemes for points, not regions?
I have seen a couple of posts about color schemes like those at the
ColorBrewer site. Most recently:
http://geography.uoregon.edu/datagraphics/color_scales.htm
These color schemes can work very well for regions (bars, polygons,
images, etc.) but are not very suitable for points and/or lines.
Is anyone aware of research/suggestions for a color scheme to use for
scatter plots? I've looked at
2009 Jan 10
1
Hmisc-xtable label
Dear all:
Does anybody know about label conflicts between xtable and Hmisc? I found a couple of e-mails similar to this problem but is not clear to me how to get around the label problem.
The first table(longtable below) is generated with the latex function from Hmisc but for some reason when I try to hyperlink to it,it takes me to the top of the document. The second table created with the xtable
2004 Oct 12
1
promptData still creates 'data(...)' in R 2.0.0
Not necessarily a bug report, but might be nice to change.
I'm using R 2.0.0 on Windows 2000.
The promptData function creates a .Rd file in which the 'usage' section is:
\usage{data(<dataset>)}
I've looked at several of the help files for various data sets. It looks
like the use of 'data' is being reduced and so it might be more
appropriate for promptData to
2005 Jul 15
2
rmpi in windows
Hi Folks,
Has anyone been able to get rmpi to work under windows ?
Thanks,
Tolga
Please follow the attached hyperlink to an important disclaimer
<http://www.csfb.com/legal_terms/disclaimer_europe.shtml>
==============================================================================
Please access the attached hyperlink for an important electronic communications disclaimer:
2007 Sep 22
1
R Extensions: Hyperlinking a pdf (not generated by Sweave/not a vignette) from a .Rd file
When constructing an R extension, how can a hyperlink from an .Rd file to a pdf (not generated by Sweave, so not a vignette) located in the inst/doc folder be constructed?
Bill Morphet
ATK, Space Launch Systems
Postflight Evaluation Eng
[[alternative HTML version deleted]]