Displaying 20 results from an estimated 1000 matches similar to: "A strange behaviour of file.path in Windows? (PR#13119)"
2008 Sep 10
3
(PR#12770) format() under Windows giv wrong resuts with
On Windows XP SP3
> format(pippo, format="%I:%M:%S %p")
[1] "11:43:12 PM"
In any case, if there is a problem it is in Windows, not in R, since this
is an Windows service that is being called. So there is no evidence at
all of any bug in R here.
On Wed, 10 Sep 2008, pego.enrico at tiscali.it wrote:
> Full_Name: Enrico Pegoraro
> Version: 2.7.2
> OS: Windows
2016 Jun 11
3
Increased errors "Broken MIME parts" in log file
On 11 Jun 2016, at 21:29, Timo Sirainen <tss at iki.fi> wrote:
>
> On 01 Jun 2016, at 16:48, Alessio Cecchi <alessio at skye.it> wrote:
>>
>> Hi,
>>
>> after the last upgrade to Dovecot 2.2.24.2 (d066a24) I see an increased number of errors "Broken MIME parts" for users in dovecot log file, here an example:
>>
>> Jun 01 15:25:29
2003 Mar 31
2
Using R2HTML
Hello,
I''m using R2HTML library to make a HTML page output (both data frames and
graphics):
HTMLStart(outdir=paste(getwd(),"/prove html", sep = ""),filename="index",
echo = F, HTMLframe = T, withprompt = "HTML> ", CSSFile = "R2HTML.CSS",
Title = "Indici di attivit?")
...
2009 Apr 19
2
importing spreadsheet data - linera regression - panel data
Hi everyone and thank you for the help you could give me.
My data is in a spreadsheet. The 1st column identifies the
firm (with the fiscal number), the columns 2 to 11 have
the variable value for 11 years. I have many variables
(files like this). Each file has about 40.000 firms
(rows). I transformed all the files in txt files. The data
is a panel data, like this:
firm revenu2007 revenue2006
2013 Apr 04
1
R CMD check --outdir=path gives unknown option '--outdir'
For 'R CMD check', it appears that option '--outdir' is not recognized
and generates warning "unknown option '--outdir'". R CMD check --help
says:
Usage: R CMD check [options] pkgs
[...]
Options:
[...]
-o, --outdir=DIR directory used for logfiles, R output, etc.
(default is 'pkg.Rcheck' in current directory,
2008 Oct 07
2
1.1.4 and trouble over NFS
Hello, I have some trouble with the current setup (it's a testing
environment):
2 server with Dovecot 1.1.4 from source (OS Debian testing 2.6.26)
(name: "exim" and "exim2")
1 NFS server (OS Debian testing 2.6.26)
I use NFS v.4, indexes shared over NFS. The relavant part of Dovecot
configuration:
dotlock_use_excl = yes
mail_nfs_storage = yes
mail_nfs_index = yes
2013 May 20
1
R CMD check: unknown option ‘--outdir==RCHECK’
Dear R devel
I am experiencing a problem using R CMD check. I tried to specify the
argument outdir, but get every time the error message:
Warning: unknown option ‘--outdir==RCHECK’
This happens both on R 2.15.2 Linux, as well as R 3.0.1 Windows, with
latest Rtools. Is it just that I am not passing the argument the right way,
or is there an issue with R CMD check?
I tried to write the argument
2004 May 21
1
pdbedit + ldap doesn't work
I have to add new user to samba; I've just upgrade the system to 3.0.4
and smbldap-tools 3.0.4;
# smbldap-useradd pippo
# smblap-usershow pippo
n: uid=pippo,ou=People,o=PROVTV
objectClass: top,inetOrgPerson,posixAccount,shadowAccount
cn: pippo
sn: pippo
uid: pippo
uidNumber: 4000
gidNumber: 513
homeDirectory: /home//pippo
loginShell: /bin/bash
gecos: System User
description: System User
2013 May 21
1
R CMD check: unknown option ?--outdir==RCHECK?
Hi,
I believe this is kind of a long standing bug though. In R-3.0.1, but this
also happened in previous versions, the long version '--outdir' is not
recognised:
For `R CMD check --outdir=mydir pkg_0.1.tar.gz` we get:
Warning: unknown option ‘--outdir=mydir’
But with `R CMD check -o mydir pkg_0.1.tar.gz` we get:
* using log directory ‘/home/renaud/Documents/projects/mydir/pkg.Rcheck’
2008 Jul 28
1
How to set directory Rscript runs in/Sweave output directory
Hello
I am using Sweave to generate some pdf reports using R on a Windows
platform and would like to control the output directory that the
generated .tex file goes to. Basically I use the following commands in
a batch file:
set outdir=c:/output/1234
Rscript -e Sweave('C:/pathpathpath/script.Rnw')
Which produces script.tex
Sweave has the option of specifying an output directory for
2013 Aug 28
1
Error when using buildVignettes()
Dear all,
When running function 'testQAReport()', which uses function
'buildVignettes()' to create a pdf-file I get the following error:
> source("testQAReport.R")
> testQAReport()
Error in .get_package_metadata(pkgdir) :
Files 'DESCRIPTION' and 'DESCRIPTION.in' are missing.
Since I did not get this error in earlier versions of R, could you
2010 Jun 06
1
R CMD in 2.11.1 error
Hi,
I have a set of user defined package which I have installed in 2.8.1 for quite some time. I installed 2.11.0 and 2.11.1 a couple of days ago while still having 2.8.1 version in my system. For the package, package.skeleton works fine in R 2.11. However, it comes problem when I run Rcmd check/intall. The intall.out shows below.
I further tested that I reran R-2.8.1/bin/R CMD check in
2016 Nov 21
2
Re: [PATCH v2 4/5] v2v: ova: don't extract files from OVA if it's not needed
On Saturday, 12 November 2016 16:37:52 CET Tomáš Golembiovský wrote:
> We don't have to always extract all files from the OVA archive. The OVA,
> as defined in the standard, is plain tar. We can work directly over the
> tar archive if we use correct 'offset' and 'size' options when defining
> the backing file for QEMU.
>
> This leads to improvements in speed
2013 Aug 30
1
Problem with texi2pdf(..,clean=TRUE)
Dear all,
To create a *.pdf file from a *.Rnw file I do:
olddir <- getwd();
setwd(outdir);
tryCatch({Sweave("QAReport.Rnw");
tools::texi2pdf("QAReport.tex", clean=TRUE)
},
finally = setwd(olddir)
);
This works fine, however 'clean=TRUE' does only work when:
outdir <-
2012 Dec 12
1
Lost in S4 and S3 classes
Hi all, this is my first post in R devel? sorry if I lost some of the guidelines.
Anyway this is my problem:
Version:
R version 2.15.2 (2012-10-26)
Platform: x86_64-apple-darwin9.8.0/x86_64 (64-bit)
I want to make an S4 class that use the output object of the function of nls.lm as a slot:
setOldClass("nls.lm")
setClass (
Class="TestClass",
2013 Feb 20
4
Error in setwd(outDir) : cannot change working directory
I installed R on my Windows laptop in C:\Program Files\R\R-2.15.2
and am able to open RGUI (640bit), see packages and run commands. However,
when I test the installation and run the basic tests and all the tests on
the standard and recommended packages i.e.:
library("tools")
testInstalledBasic("both")
testInstalledPackages("base", errorsAreFatal
2009 Aug 13
1
winbindd & Domain group
Hi,
I?m using samba rel.3.3.4.
The domain group associated to the domain user is always 10000 that means ?Domain Users? for all the domain users
$> getent passwd | grep pippo
DOMAIN\pippo:*:10015:10000:PIPPO:/home/DOMAIN/pippo:/bin/false
Do you know how is it possible to assign a different domain group ?
How is it possible that winbindd intercepts another domain group instead of the default
2006 Mar 24
2
check_box_tag
hi,
What''s the right way to use the CHECK_BOX_TAG?
I used:
<% for @pippo in @model %>
<%= check_box_tag (:scelta,@pippo) %>
<% end %>
How Can I control if a person choosen the second or third element of the
vector @pippo?
--
Posted via http://www.ruby-forum.com/.
2008 Nov 17
1
Rcmd install problem: "cannot open the connection" and "No such file or directory"
Dear all,
On Windows XP with R 2.8.0, I get the error message below when I try install a package from the command line.
(Installing as a local zip-file from the menu in the GUI works fine.) Could anybody point me towards the source (and solution) to the problem?
Regards
Søren
---------------------------------------------------------------------------
C:\Dokumenter\Stat\RLSdevel>rcmd
2004 Dec 03
2
[LLVMdev] [Fwd: Updated LLVM Visual Studio project files]
Could someone please apply this patch to the Win32 support so that
Morten and Jeff can handle the recent changes? I can't do it because
I"m on the road with only email access.
Thanks,
Reid.
-----Forwarded Message-----
> From: Morten Ofstad <morten at hue.no>
> To: Reid Spencer <reid at x10sys.com>
> Subject: Updated LLVM Visual Studio project files
> Date: Thu,