Displaying 20 results from an estimated 9000 matches similar to: "Files and Windows/NT"
1999 May 12
0
Problem with stripplot
I have had a problem with stripplot. Documentation does say that method
="stack" is only appropriate for granular data, but I don't think that
means it should fall over.
> difference
[1] 2.0 1.3 2.8 -2.6 -0.4 -0.4 -1.2 -1.4 -1.0 1.2 -2.6 -1.9
> stripplot(difference)
> stripplot(difference,method="jitter")
> stripplot(difference,method="stack")
1999 Mar 03
1
Directories
I am using r0.63.2 for Windows.
This seems like it should be a FAQ but I couldn't find it in the R FAQ.
If I want to have different workspaces for different projects how do I
arrange for R to restore a workspace from a directory other than the one
where the executable is, automatically on startup? Is it possible, or do I
have to save the workspace in the right directory then manually restore
2003 Jan 10
1
Creating packages
I am trying to create a package. I have succeeded in running R CMD check
and R CMD build on an Intel box running Redhat. I would now like to
build it on Windows as well. There is no compiled code in the package at
all.
I have downloaded the tools from Brian Ripley's Building R for Windows
page, and installed Active Perl 5.8.0. I have set paths, and Rcmd and the
tools are being found ok. I am
2006 Feb 11
1
Errors using update.packages()
When trying to update packages after the sysadmin updated R on my unix box
I got errors on some packages. For example for chron:
* DONE (chron)
mkdir: cannot create directory `/usr/lib/R/library/00LOCK': Permission
denied
ERROR: failed to lock directory '/usr/lib/R/library' for modifying
I got similar messages for spatial and cluster and warnings for other
packages. Finally I got:
1999 Jul 21
1
Getting R graphics into MS Word
I am just downloaded R, and am using it on Windows NT.
I would like to use it to generate graphics, which will be included in
Microsoft word or Powerpoint.
The graphics window allows me to save an image as an enhanced metafile.
However, if I then insert this image into a Word document, only part of
it is visible.
Has anyone on the list experience of trying to do this?
Do I need to change the
1999 Mar 10
1
lty=2
On Wed, Mar 10, 1999 at 03:14:08PM +0000, Simon Bond wrote:
> Dear all,
>
> I'm using R 63.2 on windows NT, when I use
>
> > lines(x,y, lty=2)
>
> it produces a dashed line between the first pair of points and then reverts
> back to a solid line. It produces different colours perfectly ok, but it's
> not really a solution when the plot needs to be printed
2000 Dec 20
1
dev.ask
I was surprised not to find dev.ask when I looked for it. Is there an
alternative method of holding plots before going on to the next one?
> R.version
_
platform sparc-sun-solaris2.6
arch sparc
os solaris2.6
system sparc, solaris2.6
status
major 1
minor 1.1
year
2000 Dec 20
2
Names
I am trying to create a set of vectors which have similar names. They have
a common part and an extra unique part. I am sure I have seen questions on
this before but I have been unable to find it in the archive. There are
examples of sets of names for columns of a data frame, but not for
individual vectors.
Suppose I want vectors named myvar.1 myvar.2 etc.
I tried:
>
2000 Dec 12
0
Off-topic---hardware
Sorry to be completely off topic here, but I know there will be many list
members who have an interest in and knowledge of hardware.
We have for some time used Sun hardware for our departmental servers, most
recently Sun Ultras of various specifications, running Solaris. We share
some hardware with Mathematics as well.
The applications we use are the usual suspects:
R (obviously), S-PLUS, the
2019 May 16
3
print.<strorageMode>() not called when autoprinting
In R-3.6.0 autoprinting was changed so that print methods for the storage
modes are not called when there is no explicit class attribute. E.g.,
% R-3.6.0 --vanilla --quiet
> print.function <- function(x, ...) { cat("Function with argument list ");
cat(sep="\n ", head(deparse(args(x)), -1)); invisible(x) }
> f <- function(x, ...) { sum( x * seq_along(x) ) }
2019 May 21
3
print.<strorageMode>() not called when autoprinting
Letting a user supply the autoprint function would be nice also. In a way
you can already do that, using addTaskCallback(), but that doesn't let you
suppress the standard autoprinting.
Having the default autoprinting do its own style of method dispatch doesn't
seem right.
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Tue, May 21, 2019 at 10:50 AM Lionel Henry <lionel at
2019 May 21
2
print.<strorageMode>() not called when autoprinting
It also is a problem with storage.modes "integer" and "complex":
3.6.0> print.integer <- function(x,...) "integer vector"
3.6.0> 1:10
[1] 1 2 3 4 5 6 7 8 9 10
3.6.0> print(1:10)
[1] "integer vector"
3.6.0>
3.6.0> print.complex <- function(x, ...) "complex vector"
3.6.0> 1+2i
[1] 1+2i
3.6.0>
2004 May 27
2
Rcmd check, windows xp, perl
Dear R users,
With package.skeleton() i have produced successfully my .Rd??s, ...
Now i will run Rcmd check on ..\R\bin\
But Rcmd check (and build) on my Windows XP does not work.
It`s a problem with "perl".
(Translated i get the message:
The instruction Perl is either wrongly written or could not not be found.)
In help("check") I found this:
"These may not work
2017 Jan 09
2
problem with print.generic(x)deparse(substitute(x))
Hi, All:
I'm having trouble getting deparse(substitute(x)) inside
print.generic to consistently
I'm having trouble getting a print.something to work
consistently. Consider the following toy example:
# Define an object of class 'dum'
k <- 1
class(k) <- 'dum'
str(k) # as expected
# Define print.dum
print.dum <- function(x, ...)
2002 May 27
1
problem while building a package
Please reply to: lancelot at sentoo.sn
because my address: renaud.lancelot at cirad.fr
is broken (should be fixed soon...).
platform i386-pc-mingw32
arch i386
os mingw32
system i386, mingw32
status Patched
major 1
minor 5.0
year 2002
month 05
day 15
language R
2017 Jan 09
1
problem with print.generic(x)deparse(substitute(x))
Hi, Peter et al.:
On 2017-01-09 4:24 AM, peter dalgaard wrote:
> On 09 Jan 2017, at 10:53 , Spencer Graves <spencer.graves at prodsyse.com> wrote:
>
>> # Define an object of class 'dum'
>> k <- 1
>> class(k) <- 'dum'
>> str(k) # as expected
>>
>> # Define print.dum
>> print.dum <- function(x, ...)
>>
2000 Mar 08
1
installing package in Windows
Could you help me in getting a package to compile from source in Windows?
I'm running Windows NT 4.0 on a pentium 450 with 128 Mb of Ram. I've got R
1.0.0.
I am developing a package for R which includes a bit of C code. I have things
working in Unix just fine, and now I want to port it to Windows NT.
I've been following the instructions in the R complements to Venables and
2004 May 27
2
Rcmd check, windows xp, perl (2)
Thank you for your help. I??m sorry that I found not the right
entries in the R-devel. Now, I have again a problem.
After installing all needed things I have run
Rcmd INSTALL -l ../mypkg and respectively
make mypkg
By running Rcmd check I get following message:
* checking for working latex ...Error: environment
variable TMPDIR not set (or set to unusable value) and no
default
2001 Apr 18
1
Problem with Rcmd check
In Windows, I tried to build and check Paul Gilbert's dse bundle with
the command
rcmd check ../library/dse
It ran for a while and built the packages, then failed at the end with
this:
** checking Rd files ... OK
** checking for undocumented objects ... OK
** creating syskern-Ex.R ... ERROR
I get similar errors checking packages, but there
make pkgcheck-foo
works. I don't
2003 Sep 16
3
Question in Using sink function
Could anyone please explain to me why the following writes nothing into
"all.Rout"
file? If the "for" loop is removed, t.test output can be written into
"all.out".
Thanks in advance.
Minghua Yao
......
zz <- file("all.Rout", open="wt")
sink(zz)
for(i in 1:n)
{
Cy3<-X[,2*i-1];
Cy5<-X[,2*i];
t.test(Cy3, Cy5)