similar to: problem with rdocdir option when installing R2.3.1

Displaying 20 results from an estimated 200 matches similar to: "problem with rdocdir option when installing R2.3.1"

2017 Apr 19
4
R 3.4 has broken C++11 support
Hi Dirk and Martyn, > That looks fine. Can you please give a reproducible example of a package > that compiles correctly on R 3.3.3 but not with R 3.4.0 or R-devel. here you go, it?s pretty much the simplest package possible that needs C++11: https://github.com/flying-sheep/cxx11test > Maybe you can share with us how you configure the build of R-devel? Sure, in the mail you quoted, I
2006 Feb 08
2
R 2.2.1 installation trouble on SGI/Sun (PR#8575)
Hi, I'm upgrading to R 2.2.1 and have bumped into some problems. I have been successful with installing on x86 and PPC Linux, but am unable to install R on Solaris 7 and on IRIX 6.5. Configuration and compilation go through just fine, but "make install" fails: gmake[1]: Entering directory `/scratch/atossava/R-2.2.1/doc' installing doc ... ../tools/install-sh: no destination
2019 Jul 09
2
Addition of a meta viewport tag to HTML manuals
The addition of a single line: <meta name="viewport" content="width=device-width, initial-scale=1.0"> at in the <head> of the R HTML generated manuals would make them much easier to read on mobile devices. texi2any (which generates the HTML files) is based on long-working Perl code that includes many modern HTML elements but does not include this one. A Perl
2019 Jul 18
2
Addition of a meta viewport tag to HTML manuals
Thanks for both the support & sage advice, Martin! And, aye, tis straightforward to convert the perl one-liner to a shell/sed idiom. A kind soul from the list has also offered to walk me through the "provide a patch" process and I'll do my best to get it right on Par 1 :-) -Bob On Mon, Jul 15, 2019 at 5:54 AM Martin Maechler <maechler at stat.math.ethz.ch> wrote: >
2008 Jun 15
2
Add a class attribut into a form_tag
Hi, do you know how to add into this balise a class attribut: <% form_tag :action => ''search'' do -%> in order to do this in HTML: <form action="/people/search" method="post" class="foo"> I had try to use the official documentation (http://api.rubyonrails.com/classes/ActionView/Helpers/FormTagHelper.html#M001036) but that
2017 Apr 19
0
R 3.4 has broken C++11 support
Hi Philipp, Fellow Archlinux user here. I think the problem is with the r-devel PKGBUILD file, rather than anything wrong in R itself. The PKGBUILD file does this: ln -s /etc/R/${i} ${i} when it should do ln -s /etc/R-devel/${i} ${i} You can fix your installed version with cd /opt/r-devel/lib/R/etc/ sudo rm ./* sudo ln -s /etc/R-devel/javaconf sudo ln -s /etc/R-devel/ldpaths sudo ln -s
2017 Apr 19
0
R 3.4 has broken C++11 support
On Wed, 2017-04-19 at 16:32 +0200, Angerer, Philipp wrote: > Hi Dirk and Martyn, > > > That looks fine. Can you please give a reproducible example of a > > package > > that compiles correctly on R 3.3.3 but not with R 3.4.0 or R-devel. > > here you go, it?s pretty much the simplest package possible that > needs C++11: > >
2006 Feb 25
2
R-Project build system: DESTDIR support
Hello, I am writing you about the GNU R-Project, as part of by effort to help GNU projects provide a better, more consistent build system. Currently, your project does not support the DESTDIR variable in generated Makefiles (marked as optional in the GNU coding policies, make and automake manual). In my opinion, DESTDIR support can be very helpful for the user, the distribution-specific
2007 Aug 30
4
How to measure mode (central tendancy)
What is the name of the function to give me the mode (central tendancy) of a numeric variable that can be negative? [[alternative HTML version deleted]]
2008 Dec 09
3
How can I draw bars
I need to make a graphic to show problems on different parts of chromosomes (think of a graphic showing the number of frayed threads as colors along different parts of a worn out rope). I want to draw bars going from left to right across a page and color different parts of the bars in different shades. Each graphic will need to have several bars of different lenghts corresponding to the
2010 Jul 05
1
Possible bug in 2.11.x texmf makefile.in and some related things...
Hi all, A list of some possible issues: 1. In R 2.11.x, in: http://svn.r-project.org/R/branches/R-2-11-branch/share/texmf/ there are two files, jss.cls and jss.bst (for JSS), which appear to be new since 2.10.x. These files are not installed when building/installing R. It would appear that they are not included in: https://svn.r-project.org/R/branches/R-2-11-branch/share/Makefile.in The
2006 Mar 18
3
R make install and demo(graphics) issue
I've successfully gotten R 2.2.1 to compile on AIX 5.2. However, when I run "make install", I receive the following message: /appl/perform/workspace/R-2.2.1 [root@diablo][/appl/perform/workspace/R-2.2.1] make install /appl/perform/workspace/R-2.2.1/m4 Target "install" is up to date. /appl/perform/workspace/R-2.2.1/tools Target "install" is up to date.
2009 Jul 23
1
problem building R 2.9.1 from source on RHEL 4 (x86_64)
I am building from source on RHEL 4 and have run into a problem while running "make check": running code in 'lapack.R' ...make[3]: *** [lapack.Rout] Error 1 make[3]: Leaving directory `/opt/R/R-2.9.1/tests' make[2]: *** [test-Specific] Error 2 make[2]: Leaving directory `/opt/R/R-2.9.1/tests' make[1]: *** [test-all-basics] Error 1 make[1]: Leaving
2019 Jul 15
0
Addition of a meta viewport tag to HTML manuals
>>>>> Bob Rudis >>>>> on Tue, 9 Jul 2019 14:24:24 -0400 writes: > The addition of a single line: > <meta name="viewport" content="width=device-width, initial-scale=1.0"> > at in the <head> of the R HTML generated manuals would make them much easier to read on mobile devices. > texi2any (which
2017 Apr 19
5
R 3.4 has broken C++11 support
Hi! Well, my linux distribution has very recent versions of everything, so a working C++11 compiler exists: $ gcc --version | head -n1 gcc (GCC) 6.3.1 20170306 Could wrong ./configure options be at fault here? See: https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=r-devel#n40 My sessionInfo(): $ R-devel --slave -e 'sessionInfo()' | head -n3 R Under development (unstable)
2019 Jul 21
0
Addition of a meta viewport tag to HTML manuals
>>>>> Bob Rudis writes: > Thanks for both the support & sage advice, Martin! > And, aye, tis straightforward to convert the perl one-liner to a > shell/sed idiom. > A kind soul from the list has also offered to walk me through the > "provide a patch" process and I'll do my best to get it right on Par 1 > :-) When building HTML from the Texinfo
2014 Jun 22
1
r65998 build error. share/Rd/macros/*: No such file or directory
As of r65998 I'm getting /usr/bin/install: cannot stat ?/home/scott/rbuilds/r-devel/repo/share/Rd/macros/*?: No such file or directory Commenting out the newly added @for f in $(srcdir)/Rd/macros/*; do \ $(INSTALL_DATA) $${f} "$(DESTDIR)$(rsharedir)/Rd/macros"; \ done in share/Makefile.in fixes compilation for me. I'm on Ubuntu 13.10. My configure
2007 Sep 11
6
xyplot question
I have the code below and it works fine if I print the xyplot but if I take the print out, then I just get a blank pdf. The same holds if I just send the plot to the console without the print ( I get nothing ). My question is whether this is always the case with xyplot or is there something wrong with my settings ? I am on linux ( redhat ) and using R.2.5.0. Thanks. load("stocks.dat")
2007 Jan 01
1
Types of objects?
Is there a list of object types used by R? Is there a function that I can use to tell the type of an object? Thanks a bunch, Ray [[alternative HTML version deleted]]
2013 Apr 29
1
cannot compile R on Cray XE6 HLRS HERMIT
Dear All, I am trying to compile R-3.0 on Cray xe6 (HLRS) HERMIT, no success so far. Here is my experience: I use this to configure and make R: CC="cc" \ CXX="CC" \ F77="ftn" \ FC="ftn" \ CPPFLAGS="-I$PREFIX/include" \ LDFLAGS="-L$PREFIX/lib${LIBDIRSUFFIX}" \ ./configure --prefix=$PREFIX \ --exec-prefix=$PREFIX \ --bindir=$PREFIX/bin \