Displaying 20 results from an estimated 400 matches similar to: "More than one package document with the same name"
2014 Sep 18
1
help.start() web page contains a bad link
Hi,
At my work, the web page opened with the R command help.start() has a link "User Manuals". Activating it gives this response:
Error in vignettes[i, "PDF"] : subscript out of bounds
> sessionInfo()
R version 3.1.1 (2014-07-10)
Platform: x86_64-unknown-linux-gnu (64-bit)
locale:
[1] C
attached base packages:
[1] stats graphics grDevices utils datasets methods
2015 Aug 13
3
Bug in rank with utf8?
x <- "\u0663"
y <- 3
x == y
# FALSE
rank(c(x, y))
# c(1.5, 1.5)
--
http://had.co.nz/
2010 Apr 27
1
Unable to compile crc32_x86.S on windows (R-2.10.1).
Thank you for any pointers.
Windows XP
**
*# as -version
GNU assembler (GNU Binutils) 2.19.1
Copyright 2007 Free Software Foundation, Inc.
This program is free software; you may redistribute it under the terms of
the GNU General Public License version 3 or later.
This program has absolutely no warranty.
This assembler was configured for a target of `mingw32'.*
**
**
*as -o crc32_x86.o
2011 Oct 06
3
[LLVMdev] Enhancing TableGen
On Oct 6, 2011, at 12:42 PM, David A. Greene wrote:
> Jakob Stoklund Olesen <jolesen at apple.com> writes:
>
>> On Oct 6, 2011, at 7:59 AM, David A. Greene wrote:
>>
>>> For example, I want to be able to do this:
>>>
>>> defm MOVH :
>>> vs1x_fps_binary_vv_node_rmonly<
>>> 0x16, "movh", undef, 0,
>>>
2017 Jul 18
4
Creating/Reading a complex string in R
Thanks for your pointer.
Is there any way in R how to replace " ' " with " /' " programmatically?
My actual string is quite lengthy, so changing it manually may not be
possible. I am aware of gsub() function, however not sure I can apply
it directly on my original string.
Regards,
On Tue, Jul 18, 2017 at 10:27 PM, John McKown
<john.archie.mckown at gmail.com>
2015 Mar 19
3
CRAN binary, but no source
Hi All,
this is a CRAN question, so I am sorry if this is not the appropriate forum.
I noticed that there is at least one CRAN package that has a binary (OSX
Mavericks) for a version, that does not have any source package on CRAN. Or
at least I am unable to locate it. The package is Rglpk:
http://cran.r-project.org/web/packages/Rglpk/index.html
It offers a binary for 0.5-2, but there is no
2011 Oct 07
4
[LLVMdev] Enhancing TableGen
Che-Liang Chiou <clchiou at gmail.com> writes:
> My purpose is to eliminate copy-paste style of programming in td files
> as much as possible, but only to a point that the new language
> constructs do not create too much overhead/readability-downgrade.
Yes!
> In other words, I am targeting those low-hanging fruit of copy-paste
> programmings in td files that are eliminated
2011 Oct 07
0
[LLVMdev] Enhancing TableGen
My purpose is to eliminate copy-paste style of programming in td files
as much as possible, but only to a point that the new language
constructs do not create too much overhead/readability-downgrade.
In other words, I am targeting those low-hanging fruit of copy-paste
programmings in td files that are eliminated by a simple for-loop
syntax. The repetitive patterns I observed in PTX backend (and
2017 Jul 18
3
Creating/Reading a complex string in R
Hi again,
Let say I have below string (arbitrary)
<html>
<head>
<script type="text/javascript" <script type="text/javascript">
mystatement('current', {'pac':['']});
mystatement;
I want to pass above string to some R variable for further analysis.
So I have tried below :
String = '<html>
2014 Jul 01
1
combining data from multiple read.delim() invocations.
Is there a better way to do the following? I have data in a number of tab
delimited files. I am using read.delim() to read them, in a loop. I am
invoking my code on Linux Fedora 20, from the BASH command line, using
Rscript. The code I'm using looks like:
arguments <- commandArgs(trailingOnly=TRUE);
# initialize the capped_data data.frame
capped_data <- data.frame(lpar="NULL",
2016 Apr 29
1
How to access the latitude & longitude for UK post codes in R
Hi All,
I have a data frame with three columns i.e., pc, lat, lon.
The pc column is populated with list of postcodes, and I want to execute R command that can get me the lat and lon for the every item in the pc column and populate the respective lat and lon columns.
Is there any package that could be used?
Any help will be really appreciated.
Many Thanks and
Kind Regards
--
Muhammad
2017 Jul 18
0
Creating/Reading a complex string in R
Try:
String = '<html>
<head>
<script type="text/javascript" <script type="text/javascript">
mystatement(\'current\', {\'pac\':[\'\']});
mystatement;'
To embed a single ' mark in a string delimited by ' marks, you must
"escape" them by prefixing them with a back-slash \.
R version
2016 Sep 09
3
Different results for tan(pi/2) and tanpi(1/2)
As the subject line says, we get different results for tan(pi/2) and
tanpi(1/2), though this should not be the case:
> tan(pi/2)
[1] 1.633124e+16
> tanpi(1/2)
[1] NaN
Warning message:
In tanpi(1/2) : NaNs produced
By redefining tanpi with sinpi and cospi, we can get closer:
> tanpi <- function(x) sinpi(x) / cospi(x)
> tanpi(c(0, 1/2, 1, 3/2, 2))
2017 Jul 19
0
Creating/Reading a complex string in R
It was suggested to quote your string with *backticks* (` ... `) rather
than single quotes.
String <- `<html>
<head>
...
`
On 7/18/2017 1:05 PM, Christofer Bogaso wrote:
> Thanks for your pointer.
>
> Is there any way in R how to replace " ' " with " /' " programmatically?
>
> My actual string is quite lengthy, so changing
2016 Jul 12
1
Is .packageName part of the official API?
Hi, I've seen that some packages use .packageName internally to infer
their own name. Is that officially supported? I could not find it
documented anywhere.
There's utils::packageName(), which internally looks for .packageName.
However, if the latter is not found, it may return NULL whereas an
error would be more appropriate if a package name is expected. Using
.packageName would give
2015 Mar 25
4
F77_CALL/NAME problem
Dear R-devel,
I am trying to use Fortran DGESV subroutine into C. Here it is the relevant
part of the C file I am currently writing
#include<stdio.h>
#include<R.h>
#include<Rmath.h>
#include<math.h>
void F77_NAME(DGESV)( int*, int*, double*, int*, int*, double*, int*, int*);
void solve( int *p, double *A, double *Ainv)
{
...
F77_CALL(DGESV)(p, p, Ain, p, ipiv,
2013 Nov 12
1
Own Package Installscript
Hi,
i want to use Puppet to install all packages from a webserver (no
repository) .
Therefore I wrote following Script:
class install_package {
case "$operatingsystem" {
SLES: {
notify {"${operatingsystem}
${operatingsystemrelease} detected":}
notify {"Installing $packagename now:":}
2001 Jun 12
1
help(PackageName)
Dear R Core Team,
I'm wondering whether it is useful that every package should allow
for help(PackageName), giving some general information about the
package (more/nicer than library(help=PackageName)). This man page
may include some mathematical or statistical background, or contain
a guideline for the package.
Cheers,
Martin
--
Martin Schlather email:
2005 Sep 13
1
R CMD INSTALL -l /path/to/library packagename
Background:
OS: Linux Mandrake 10.1
release: R 2.1.1
editor: GNU Emacs 21.3.2
front-end: ESS 5.2.3
Colleagues
Since I upgraded to R 2.1.1, I am getting a an error message from R CMD
INSTALL packagename that says
R_HOME ('/usr/local/lib/R') not found.
That's not too surprising, since R is now in /usr/lib/R, but what is
confusing me is that
R CMD INSTALL -l /path/to/library
2013 Jun 04
2
Error during R CMD check
Hi All,
I am encountering the following error while performing check on the R
package we built:
R CMD check packagename_0.99.0.tar.gz
During startup - Warning message:
Setting LC_CTYPE failed, using "C"
* using R Under development (unstable) (2013-05-14 r62742)
* using platform: x86_64-unknown-linux-gnu (64-bit)
* using session charset: ASCII
* checking for file