Displaying 20 results from an estimated 100 matches similar to: "package.skeleton does invalide regular name..."
2008 Aug 07
1
package.skeleton does invalide regular name, bis... (PR#12020)
Hi the list,
I guess I find an other bug (the first one is at the end off this mail)
in package.skeleton. It occurs when we give as code_file some file that
are not in the current directories.
If we give a single file to code_file (like code_file=3D"riri/fifi.R"),
it does not reconize fifi.R as a regular name and change it to
riri/zfifi.R
If we give several file to code_file (like
2008 Mar 30
1
package.skeleton.S4
Hi the devel list.
I am adapting the package.skeleton to S4 classes and methods
I would have been very proud to post a new working function on this list.
Unfortunately, I do not manage to solve all the problems. Mainly
- sys.source does not compile a file with setClass
- dumpMethod does not exists yet
In the following code, thise two problems are notified by a line
#################
Still
2007 May 10
2
security = ads --> invalide user
Hello
I try to run SAMBA with security = ads on AIX 5.3 with SAMBA 3.0.23d.
"net ads join" was successful and the machine is now visible in the Domain
with the netbios name.
When I try to access the shares on the machine the log.smbd files says:
(...)
[2007/05/10 08:58:16, 1] smbd/sesssetup.c:reply_spnego_kerberos(310)
Username MYDOMAIN/MYUSERNAME is invalid on this system
2013 Oct 31
0
Trap invalide opcode error
Hello,
Using Ubuntu Server 12.04 and Asterisk 11.2.1.
I'm getting the following error when trying to start asterisk:
(Syslog) kernel: [ 1032.713864] asterisk[26918] trap invalid opcode ip:7fc272923076 sp:7fff928cf1b0 error:0 in codec_ilbc.so[7fc272921000+e000]
We were running Asterisk on a physical box, but moved it to a virtual environment. That went fine. Asterisk started normally and
2011 Dec 16
2
package.skeleton()
Hi--
I'm creating an R package, I've read through "Writing R Extensions" and the
package.skeleton() R page-- and I'm still running into a little confusion.
I would greatly appreciate any advice you can provide.
Where do I run my following line of code from?:
> package.skeleton(name = "a", code_files = "EsetObject.r"
I'm currently running it from
2009 Nov 25
1
problem in building an R package
i am trying to build an R package and submit to CRAN.
i am using -
package.skeleton(name="xxzz", code_files = "H:\xxzz.R")
to build package xxzz.
---------------------------
The code above generates 'xxzz' folder.
It seems that I have to manually edit the files generated in xxzz folder (to
add titles, authors, etc)
--------------------------
But when I re-run -
2011 Jun 09
1
Permission denied in Windows 7
I'm using package.skeleton() windows 7, 64 bit.
When I try to specify the code_files
package_skeleton(....code_files = " some directory")
I get a warning that that the connection cannot be opened and
I get a Permissions denied error.
I'm running R as admin and I've given everybody full permissions on the
folder.
What am I missing
[[alternative HTML version deleted]]
2011 Jun 09
1
package.skeleton() does not create 'data' folder
Hi again, yesterday I mailed this query however I could not see this
on the mail list. Therefore, I am reposting it again.
I was using package.skeleton() function to create the
skeleton of my package in windows. Here is my attempt:
rm(list = ls())
setwd("F:/R_PackageBuild")
package.skeleton("trial1", namespace = TRUE, code_files =
"F:/R_PackageBuild/trial.r")
In
2008 Apr 13
1
R 2.7 package.skeleton
Hi the devel list
I am testing package.skeleton in R 2.7 (download today). I get an error
that I do not understand. I guess it is not an error from my code since
I have no probleme when I source it. So is it a error in
package.skeleton?
Here is my code :
--- 8< ------ File essai.r -------------
setClass(
Class="ClusterizLongData",
representation=representation(
2009 Jan 30
2
error message with roxygen
Hello useRs,
I'm trying to use the Roxygen package.
Here my code file :
#' A packge to check Roxygen's sanity
#' @name helloRoxygen-package
#' @docType package
NA
And my R code to generate the package :
library(roxygen)
package.skeleton("helloRoxygen", code_files = "roxy.r", force = T)
roxygenize("helloRoxygen", "helloRoxygen",
2009 Oct 26
2
What is the most efficient practice to develop an R package?
I am reading Section 5 and 6 of
http://cran.r-project.org/doc/contrib/Leisch-CreatingPackages.pdf
It seems that I have to do the following two steps in order to make an
R package. But when I am testing these package, these two steps will
run many times, which may take a lot of time. So when I still develop
the package, shall I always source('linmod.R') to test it. Once the
code in
2006 Oct 25
0
Help message translation quiete strange (nv 50)
Hello,
just installed build 50, and typed ''zfs'' in a shell.
I got the help message, and was surprised with it :
--------------------
bash-3.00# zfs
commande manquante
syntaxe : zfs command args ...
o? ''command'' est l''une des possibilit?s suivantes :
create [[-o property=value] ... ] <filesystem>
create [-s] [-b blocksize] [[-o
2020 Feb 18
2
Possible Regression in setClassUnion between 3.5.0 and 3.6.0
I am trying to create a class union of class unions to facilitate method
dispatch. When I execute code in the global environment, everything acts as
expected, however when I put the same code in the context of a package,
selectMethod can no longer find the correct method. This first block below
puts the code in the context of a package:
fn <- "codefile.R"
writeLines(
c(
2012 Apr 03
1
Package seems to be present but library don't find it
Hi,
I try to make my first package? The HelloWorld.R file is:
#### HelloWorld.R ####
#' showHello est une fonction R permettant d'afficher le message
#' "Hello World!" sur la console.
#' @title la fonction showHello()
showHello <-function(){
cat("Hello World!\n")
}
I use the following procedure to get the tar:
# set the working directory where the file is
2009 Jul 09
1
Bug in package.skeleton, R 2.9.0?
Dear all,
I am using package.skeleton to build a small packages of misc function
for personal use. I have recently discovered that the option
force=TRUE doesn't seem to do what is meant to do. Here's what I'm
doing:
> setwd("/Users/danielk/Documents/R/packages/dk")
> files <- paste("codebase", dir("codebase", pattern=".R"),
2020 Feb 19
2
Possible Regression in setClassUnion between 3.5.0 and 3.6.0
Thanks, I'll look into it.
On Tue, Feb 18, 2020 at 8:32 AM Ezra Tucker <ezztucker at gmail.com> wrote:
>
> Hi Robert,
>
> This looks like a bug to me (tested in R 3.6.2 on Windows), f(new("a"))
> should return "hi!". I'll add that this DOES work properly in 3.6.1
> which leads me to suspect this could be due to the subtle change in the
> way
2010 May 10
1
Rd files must have a non-empty \title
Hello everybody,
I'm trying to install a package I have built. This package contains three
scripts with various functions (S3 as well as S4 classes)
I run at first the package.skeleton command with:
> package.skeleton("affyAnalysis", namespace=TRUE, code_files =c("defS3.R",
"defS4.R", "qc.R"))
affyAnalysis is the name of the supposed package and
2006 Oct 06
4
Samba Anonymous LDAP Authentication
Hello all. I have a Samba PDC server working great already. However
on another host on the network I would like to setup a Samba server
that authenticates to the same LDAP server that my Samba PDC is using.
However I want to do this anonymously without telling the second
server the admin password for LDAP. I cannot seem to find any
documentation for anonymous LDAP authentication using Samba.
2020 Feb 26
1
Possible Regression in setClassUnion between 3.5.0 and 3.6.0
Okay - that makes sense and thanks for looking into this! As an aside, from
R-devel's perspective would you say methods are stabilizing again or do you
foresee a lot of changes coming in the 4.* series?
On Tue, Feb 25, 2020 at 3:39 PM Michael Lawrence via R-devel <
r-devel at r-project.org> wrote:
> This seems to work as expected (returning "hi!") in R-devel, but there
2005 Jun 26
2
(sans objet)
Ma premi??re question: puis-je ??crire en fran??ais, mon anglais est
pire que pire. J'essaie en fran??ais; sinon, j'essaierai une traduction!
Je sduis d??butant. Ma question est donc simple, j'imagine.
Je travaille sur des tableaux de statistiques. Je prends un exemple:
J'ai un "frame" que j'appelle "eurostat" qui me donne des
statistiques