Displaying 20 results from an estimated 10000 matches similar to: "weirdness in sourc()ing a dump() (bug?)"
2004 May 10
5
Gmane for list?
Hi all,
I was wondering if I might subscribe this list to gmane.org, so I (and
everyone else) might view and search in with a newsreader?
Also--is there any way to get it indexed by google, maybe along with the
r-help list (or is it already but I haven't found it)?
Thanks for your consideration
W
2004 May 10
4
"#!/usr/bin/R"
Hi all,
Is there any documentation on running R like one would run a shell or
Perl script, with out/input directed appropriately, environment variable
access, and command switch processing?
I looked some, and even remembered to check the FAQ, but couldn't find
anything.
Thanks
W
2003 Sep 30
2
dump/source problem with hclust object (PR#4361)
library(mva)
data(USArrests)
hc <- hclust(dist(USArrests), "ave")
plot(hc) # OK
dump(c("hc"), "tst")
rm(hc)
source("tst")
plot(hc) # Error in plot.hclust(hc) : invalid dendrogram input
The same problem occurs with dput/dget
--please do not edit the information below--
Version:
platform =
2018 Sep 29
1
Improvement to documentation in dput.Rd
If the "Matrix" package is attached, 'example(dget)' fails:
> library(Matrix)
> example(dget)
dget> fil <- tempfile()
dget> ## Write an ASCII version of function mean to our temp file
dget> dput(mean, fil)
dget> ## And read it back into 'bar'
dget> bar <- dget(fil)
Error in initialize(value, ...) : '...' used in
2014 Jun 20
1
dget() much slower in recent R versions
Hello,
I've noticed that dget() is much slower in the current and devel R
versions than in previous versions. In 2.15 reading a 10000-row
data.frame takes less than half a second:
> (which.r <- R.Version()$version.string)
[1] "R version 2.15.2 (2012-10-26)"
> x <- data.frame(matrix(sample(letters, 100000, replace = TRUE), ncol = 10))
> dput(x, which.r)
>
1999 May 27
1
Factor structures not preserved after dump/dput (PR#200)
Full_Name: Marek Ancukiewicz
Version: 0.64.0
OS: Linux (RedHat 6.0)
Submission from: (NULL) (132.183.12.87)
I've noticed that factor structures get recoded when the data is dumped
using either dump or dput and then restored with source or dget. This
occurs when the values taken by factors do not include 1. For example:
a <-
2007 Oct 17
1
dget not restoring dput in R 2.6.0 (PR#10350)
Full_Name: David States
Version: 2.6.0
OS: Windows XP64
Submission from: (NULL) (141.211.38.9)
# The pair of commands
#
# dput(object, "file.dput")
# object = dget("file.dput")
#
# should be a no op, but this is not working correctly for all objects.
#
# Simple example:
#
# make a simple object of class "hclust"
cl = hclust(dist(matrix(nrow=4,ncol=4, c(1:16))))
#
1999 Feb 12
1
more on dput
I would like to write data so that I can re-read it and reproduce results,
preferably in both R and Splus. In the past when I have done this my data has
been relatively simple and I've just scan()ed it. Now I have a fairly
complicated structure I would like to preserve and I've been trying to use dput
and dget. Is there a better way? If not, the following truncation by dput,
which I
2004 Jul 15
1
dput and dget
I am seeking advice about dput() and dget().
We are using the ascii format supported by these functions as a way to
write data from other programs that can be read into R easily. We are able
to save complicated results (in the form of an R list) to a single file
that can be read trivially into R or S-Plus.
My question is whether that format can be considered a safe one for
medium-term (say
2004 Aug 25
5
S <-> R
Hello! I would like to be able to read in list data objects in R/S
created in R/S. (Ie R->S or S->R.) I have tried 'dput' and 'dump' in S,
but neither of the created files could be read into R (with 'dget' nor
'source'). Is there any way that I can save a list object in S that can
be read into R?
Sincerely,
Zachary Skrivanek, PhD
Research Scientist
2007 Apr 22
1
dput/dget when a data frame has 2 rows (PR#9627)
This doesn't seem right; I'm using R version 2.4.1 (2006-12-18) on Mac OS
and Win XP and find the same issue:
> mydataframe <- data.frame(ppi=c(.5,.5),mmu=c(5,10))
> dput(mydataframe,"mydataframe.txt")
> dget("mydataframe.txt")
Error in attributes(.Data) <- c(attributes(.Data), attrib) :
row names must be 'character' or 'integer', not
2004 Apr 28
1
label separators in boxplots with conditioning
Hi R-helpers,
I have a data.frame with three columns (lots more reps though in each),
like so:
'FOO' 'BAR' 'RESULT'
1 .01 75
1 .05 12
1.1 .01 100
1.1 .05 50
1.2 .01 75
1.2 .05 12
I am calling boxplot(RESULT ~ FOO:BAR, ...) This
2006 Oct 10
1
error in dput applied to dataframe (PR#9286)
Full_Name: Daniel F Higgins
Version: 2.4.0
OS: Windows XP and Mac OSX
Submission from: (NULL) (128.111.242.49)
Create a dataframe as indicated below and apply 'dput' to it; note that the
row.names attribute is incorrect!
> aaa <- c("AAA","BBB","AAA")
> bbb <- c(1,2,3)
> df <- data.frame(aaa,bbb)
> dput(df)
structure(list(aaa =
2008 Aug 20
2
Reading in a value of .Random.seed in .Rprofile
For reasons that are best known to myself [ ;-) ] I have a value
of .Random.seed
saved (via dput()) in a file ``.Random.seed.save''.
In my .Rprofile I have the lines:
.Random.seed <- dget(".Random.seed.save")
Junk <- dget(".Random.seed.save")
print(all.equal(.Random.seed,dget(".Random.seed.save")))
2008 Aug 07
3
how to save an R object selectively?
Hi,
How to save an R object for example a matrix or vector and not all objects created in a session (which is usually performed by save.image or q("yes"))?
Best,
Carol
[[alternative HTML version deleted]]
2004 May 19
4
GUI data browsers
Hi R-helpers,
Does anyone know of a good Tk (or other) script that allows somewhat
intuitive viewing of all of the variables (especially complex lists) in
a session? I would also like to delete, save to file, and rename them
graphically. I would also like a lot of supplemental information like
class, atrributes, names, modes, whatever else...
Context: I am running simulations
2006 Nov 23
1
dumping/loading objects with 'tsp' attribute
Dear all,
I'm indirectly faced with the fact that setting the 'tsp' attribute of
an object modifies its class definition:
> class( structure(1:2, tsp=c(1,2,1), class=c("myts","ts")) )
[1] "ts" "myts"
In general, this is of really little (ok, I admit: totally no)
interest for me because 'myts' class is added just after assigning the
2020 Oct 20
5
write.csv covert Åland to <c5>land
Hi there,
I tried to export the names of country to a csv file with write.csv().
In the resulted file, ?land was coverted to <c5>land. Is there any way
could prevent this happening? Thanks!
> abc
[1] "?land"
> write.table(abc, file = "")
"x"
"1" "<c5>land"
Best,
Jinsong
2020 Oct 20
0
write.csv covert Åland to <c5>land
Hi there,
Why the same string is displayed in different form?
> abc[,1]
[1] "?land" "Afghanistan"
> abc
name
1 <c5>land
2 Afghanistan
And more...
> dput(abc, "aa.txt")
> dget("aa.txt")
name
1 <c5>land
2 Afghanistan
> dget("aa.txt")[,1]
[1] "<c5>land"
2010 Feb 03
3
pickle in R
Hello all!
I was wondering if there is a way to pickle an R object into a file
like it is possible in python? Such as you have an complicated R
object(not a dataframe) , you use a function to write it to a file and
than you have a function where you can retrieve the object from that
file later on.
Thanks
Christoph