Displaying 4 results from an estimated 4 matches for "rexport".
Did you mean:
report
2009 Jul 03
0
confused about directory permissions for profdata
...of permissions
problem with user profiles. Perhaps someone can set me straight. I
have the split profile structure (profiles and profdata) as mentioned
in ch 5 of "Samba By Example". The files live on a NAS box, and are
exported via NFS. Root squashing is turned on. Smb.conf rexports
these to client machines.
I'm sure this is probably making my life harder, but we just don't
have the disk space on the server since there are people who don't
blink at putting 10G
on their desktop. I can ask them not to, but that doesn't help. I
give them a mounted home...
2015 Nov 16
2
Best way to implement optional functions?
On 16/11/2015 4:00 AM, Richard Cotton wrote:
> On 22 October 2015 at 22:55, Duncan Murdoch <murdoch.duncan at gmail.com> wrote:
>> I'm planning on adding some new WebGL functionality to the rgl package, but
>> it will pull in a very large number of dependencies. Since many people won't
>> need it, I'd like to make the new parts optional.
>
>> Can
2007 Jul 08
1
Writing Excel (.xls) files on non-Windows OSs using Perl
...VFILES/", i, ".csv", sep = ""),
sep = ",", quote = TRUE, na = "", row.names = FALSE)
}
# Now call the Perl script from within R, presuming
# that the script is in the current default directory
system("./WriteXLS.pl --CSVPath CSVFILES RExport.xls")
This process has worked for me, given the current functional
requirements for my project. I hope that this is of some help to others.
Regards,
Marc Schwartz
2013 Aug 30
2
"False" warning on "replacing previous import" when re-exporting identical object
Hi,
SETUP:
Consider three packages PkgA, PkgB and PkgC.
PkgA defines a generic function foo() and exports it;
export(foo)
PkgB imports PkgA::foo() and re-exports it;
importFrom(PkgA, foo)
export(foo)
PkgC imports everything from PkgA and PkgB:
imports(PkgA, PkgB)
PROBLEM:
Loading or attaching the namespace of PkgC will generate a warning:
replacing previous import by