search for: rlogo

Displaying 20 results from an estimated 23 matches for "rlogo".

Did you mean: logo
2008 Mar 07
3
R-Logo in \LaTeX (Mag. Ferri Leberl)
Dear Mag. Ferri Leberl, I'm using something like: ----------------------- tex.tex --------------------------- \documentclass{article} \usepackage{graphicx} \usepackage{fancyvrb} \newcommand{\Rlogo}{\protect\includegraphics[height=1.8ex,keepaspectratio]{Rlogo.pdf}} \newcommand{\myinput}[1] {\begin{scriptsize} \VerbatimInput[frame=single,label=#1]{#1} \end{scriptsize}} \title{The R logo, \Rlogo, in \LaTeX} \author{J.R. Lobry} \begin{document} \maketitle \section{Introduction to \Rlogo:}...
2008 Mar 07
3
R-Logo in \LaTeX (Mag. Ferri Leberl)
Dear Mag. Ferri Leberl, I'm using something like: ----------------------- tex.tex --------------------------- \documentclass{article} \usepackage{graphicx} \usepackage{fancyvrb} \newcommand{\Rlogo}{\protect\includegraphics[height=1.8ex,keepaspectratio]{Rlogo.pdf}} \newcommand{\myinput}[1] {\begin{scriptsize} \VerbatimInput[frame=single,label=#1]{#1} \end{scriptsize}} \title{The R logo, \Rlogo, in \LaTeX} \author{J.R. Lobry} \begin{document} \maketitle \section{Introduction to \Rlogo:}...
2010 Jul 30
2
logos and goodies
...ed to make myself a tshirt w/ the logo, but not as high quality as cafepress does) The other thing I noticed is that the link to the R logos' directory, http://developer.r-project.org/Logo, is blocked to the general public. Luckily, if you know the name of the image files is "Rlogo-[1-6].png", you can still download the images. Any reason the /Logo directory itself couldn't be made read-accessible? Carl
2013 Mar 02
1
Raster images and saving with original pixel dimensions in tiff, jpeg, or png perferablly.
...e, vjust, hjust, default.units, gp and vp. Perhaps these are what I need to use but I am getting nowhere without more documentation. Here is the basic code I've used to experiment with making this work. The end result I'm hoping for would be an image exactly like the one I've read in (Rlogo.jpg for this small example). I turned off dev.copy lines because I'm not sure on the guidelines for file writing functions. Thanks, Hans Thompson Forgive me If I made any mistakes following posting guidelines. ####START##### library(jpeg) library(grid) img <- readJPEG(system.file("...
2019 Dec 12
2
R 3.6.2 is released
...1 pd staff 29 Dec 12 00:20 R-latest.tar.gz -> R-rc_2019-12-06_r77555.tar.gz The current version in SVN differs only by the VERSION file. Its NEWS.Rd starts Peters-MacBook-Air:R pd$ more VERSION 3.6.2 Patched Peters-MacBook-Air:R pd$ more doc/NEWS.Rd % -*- coding: utf-8 -*- \newcommand{\Rlogo}{\if{html}{\figure{../../html/Rlogo.svg}{options: class="toplogo" alt="[R logo]"}}\if{latex}{\figure{Rlogo.pdf}{options: width=0.5in}}} \name{NEWS} \title{R News} \encoding{UTF-8} \section{\Rlogo CHANGES IN R 3.6.2}{ \subsection{NEW FEATURES}{ \itemize{ .... and any...
2010 Apr 15
16
Votaciones concurso logotipo
...original, es decir que no sea demasiado similar a alguno conocido y que se pueda usar en blanco y negro. Para votar podéis responder este email rellenando lo siguiente: 3 votos para logo: xxx 2 votos para logo: xxx 1 voto para logo: xxx Los logotipos están disponibles en: http://binoid.com/rlogos/ Además nos gustaría conocer cualquier comentario, crítica, sugerencia sobre cualquier logotipo. El plazo para la votación es de 5 días a partir de hoy por lo que se cerrará la votación el día 20. Gracias a todos por vuestras propuestasy mucha suerte. ¡Que gane el mejor! Un saludo Patricia [...
2018 May 04
2
download.file does not process gz files correctly (truncates them?)
On Fri, May 4, 2018 at 8:34 AM, Tomas Kalibera <tomas.kalibera at gmail.com> wrote: > The current heuristic/hack is in line with the compatibility approach: it > detects files that are obviously binary, so it changes the default behavior > only for cases when it would obviously cause damage. > > Tomas Well, I was trying to download a .gz file and download.file() didn't
2019 Dec 12
0
R 3.6.2 is released
...gz -> > R-rc_2019-12-06_r77555.tar.gz > > The current version in SVN differs only by the VERSION file. Its NEWS.Rd > starts > > Peters-MacBook-Air:R pd$ more VERSION > 3.6.2 Patched > Peters-MacBook-Air:R pd$ more doc/NEWS.Rd > % -*- coding: utf-8 -*- > \newcommand{\Rlogo}{\if{html}{\figure{../../html/Rlogo.svg}{options: > class="toplogo" alt="[R logo]"}}\if{latex}{\figure{Rlogo.pdf}{options: > width=0.5in}}} > > \name{NEWS} > \title{R News} > \encoding{UTF-8} > > \section{\Rlogo CHANGES IN R 3.6.2}{ > > \subsectio...
2018 May 07
2
download.file does not process gz files correctly (truncates them?)
...of the 'method' argument, the current implementation will download the same file differently depending on other files downloaded at the same time. For example, here a PNG file is downloaded in text mode and its content is translated: > urls <- c("https://www.r-project.org/logo/Rlogo.png") > download.file(urls, destfile = basename(urls), method = "libcurl") trying URL 'https://www.r-project.org/logo/Rlogo.png' Content length 48148 bytes (47 KB) downloaded 47 KB > file.size(basename(urls)) [1] 48281 But if we throw in a "known" binary exte...
2006 Aug 31
2
R-Project logo in SVG format
Hi, I'm looking for a version of the R-Project logo in SVG format. I've found the bitmapped versions, http://developer.r-project.org/Logo/ but would prefer a scalable version as it usually looks better when printed. Where may I find one? -Lars Lars Nooden (lars at umich.edu) On the Internet, nobody knows you're a dog ... ... until you start barking.
2011 Feb 15
1
Using rasterImage on a CairoWin device prevents adding further elements to device?
I was pointed to the Cairo package for plotting PNG images on a device. I've been playing around with it, but found that after I use the rasterImage function, I can't add anything any more to the device, eg : img <- readPNG(system.file("img", "Rlogo.png", package="png")) r = as.raster(img[,,1:3]) r[img[,,4] == 0] = "white" CairoWin() plot(1:2,1:2,type="l") rasterImage(r,1,1,2,2) points(seq(1,2,by=0.1),seq(2,1,by=-0.1),col="black") The points are not plotted anymore. If I use the normal plotting d...
2018 Jun 01
1
rasterize SpatialPolygon object using a RasterBrick object
...ect. The documentation of the raster::rasterize function explicitly says this is allowed. Here's what I am doing # load the raster package library("raster") # create a raster brick object using the example from the brick function documentation b <- brick(system.file("external/rlogo.grd", package="raster")) b nlayers(b) names(b) extract(b, 870) # create a SpatialPolygon object using the example from the function documentation Sr1 = Polygon(10*cbind(c(2,4,4,1,2),10*c(2,3,5,4,2))) Sr2 = Polygon(10*cbind(c(5,4,2,5),10*c(2,3,2,2))) Sr3 = Polygon(10*cbind(c(4,4,5,10,...
2012 Jun 07
2
x11 icon and class
...version of Ubuntu, which has a (new) user interface centered around icons. I am not sure if this was a conscious choice by r-core or simply a low priority. In case of the latter, I attach a patch against R-devel (as of 6 June) that specifies: 1) _NET_WM_ICON as a slightly tweaked version of Rlogo-5.png (48x48 pixels, circle filled-in with white to be legible; ARGB data hardcoded as a constant array in a new file "rlogo_icon.h"). 2) WM_CLASS (for reasons unclear to me, previously WM_CLASS was only set #ifndef USE_Xt) l As Ubuntu is the single most popular linux distribution,...
2019 Dec 12
4
R 3.6.2 is released
The build system rolled up R-3.6.2.tar.gz (codename "Dark and Stormy Night") this morning. The list below details the changes in this release. You can get the source code from http://cran.r-project.org/src/base/R-3/R-3.6.2.tar.gz or wait for it to be mirrored at a CRAN site nearer to you. Binaries for various platforms will appear in due course. For the R Core Team, Peter
2019 Dec 12
4
R 3.6.2 is released
The build system rolled up R-3.6.2.tar.gz (codename "Dark and Stormy Night") this morning. The list below details the changes in this release. You can get the source code from http://cran.r-project.org/src/base/R-3/R-3.6.2.tar.gz or wait for it to be mirrored at a CRAN site nearer to you. Binaries for various platforms will appear in due course. For the R Core Team, Peter
2019 Dec 12
4
R 3.6.2 is released
The build system rolled up R-3.6.2.tar.gz (codename "Dark and Stormy Night") this morning. The list below details the changes in this release. You can get the source code from http://cran.r-project.org/src/base/R-3/R-3.6.2.tar.gz or wait for it to be mirrored at a CRAN site nearer to you. Binaries for various platforms will appear in due course. For the R Core Team, Peter
2007 Feb 07
0
Icon proposal
...an attempt to replace the current logo. But maybe somebody likes the look of my new logo and wants to use it as an icon or something. The SVG file: http://www-user.uni-bremen.de/~felwert/R/R.svg The logo in about the size of the R's website's logo: http://www-user.uni-bremen.de/~felwert/R/Rlogo-neu.png The logo as 48x48 icon: http://www-user.uni-bremen.de/~felwert/R/scientific-r-48.png The files themselves are Public Domain, the logo is property of the R Foundation, I assume - but I couldn't find anything specific on the web site, so I welcome information on that topic. I'd lik...
2013 Jan 01
0
R version 3.0.0
This is no secret to those who read the NEWS file of the development version regularly, as the following has been in place since December 12th: \section{\Rlogo CHANGES IN R-devel}{ \subsection{SIGNIFICANT USER-VISIBLE CHANGES}{ \itemize{ \item It is intended that this version will be released as \R 3.0.0. .... However, it seems reasonable to supplement this with a more direct public announcement. The intended timing is to follow the an...
2013 Jan 01
0
R version 3.0.0
This is no secret to those who read the NEWS file of the development version regularly, as the following has been in place since December 12th: \section{\Rlogo CHANGES IN R-devel}{ \subsection{SIGNIFICANT USER-VISIBLE CHANGES}{ \itemize{ \item It is intended that this version will be released as \R 3.0.0. .... However, it seems reasonable to supplement this with a more direct public announcement. The intended timing is to follow the an...
2007 Aug 31
2
Bugreport on integration of Sweave and latex beamer
I think I have isolated a problem with integration between Sweave and beamer. Could you please see the file: http://www.mayin.org/ajayshah/tmp/bugdemo.Rnw Unfortunately, it uses some of my internal libraries, so you can't run it. When I put it through Sweave, I get: http://www.mayin.org/ajayshah/tmp/bugdemo.tex which is, of course, a generic latex file which you can read and