Displaying 5 results from an estimated 5 matches for "docdis".
Did you mean:
docdir
2017 Aug 18
0
"How to convert .Rdata file into .csv or something else?" [SOLVED:Corrected version]
...I cannot open this file, so please ignore the following part.
--------------------------------------------------------------------------------------------------
If you want to create both csv file and an object directly from the file
path;
> library(R.utils)
> saveObject(WV6_Data_R, "~/docdis/input/ch2/WV6_Data_R_v_2016_01_01.csv")
> d <- loadObject("~/docdis/input/ch2/WV6_Data_R_v_2016_01_01.csv")
---------------------------------------------------------------------------------------------------
I am so sorry for my mistake. For your reference, I put the whole con...
2017 Aug 18
0
"How to convert .rdata file into .csv or something else?" [SOLVED:Corrected version2]
...I cannot open this file, so please ignore the following part.
------------------------------------------------------------
--------------------------------------
If you want to create both csv file and an object directly from the file
path;
> library(R.utils)
> saveObject(WV6_Data_R, "~/docdis/input/ch2/WV6_Data_R_v_2016_01_01.csv")
> d <- loadObject("~/docdis/input/ch2/WV6_Data_R_v_2016_01_01.csv")
------------------------------------------------------------
---------------------------------------
I am so sorry for my mistake. For your reference, I put the whole co...
2017 Aug 18
0
"How to convert .Rdata file into .csv or something else?" [SOLVED]
Dear mailing list members,
Thank you for all members who gave me advice.
This question is solved.
I tried to create an object using the load function by analogy based on the
read.csv function like this;
> d <- load("~/docdis/input/ch2/WV6_Data_R_v_2016_01_01.rdata")
but, load function cannot be used in this way. Correct ways are;
> load("~/docdis/input/ch2/WV6_Data_R_v_2016_01_01.rdata", verbose = TRUE)
#You can find the name of the stored object is "WV6_Data_R" by setting
verbose = TRUE
L...
2017 Aug 17
3
How to convert .Rdata file into .csv or something else?
Dear mailing list members,
I am a beginner of this community.
I would like to analyze data in a .rdata file.
I ran the following code, but the object "d" remained empty.
d <- load("~/docdis/input/ch2/WV6_Data_R_v_2016_01_01.rdata")
I would like to know how to convert this file format into .csv or .txt.
I suppose this question is very basic, but I could not find solutions on
internet or in my textbooks.
I would appreciate it if someone would help me.
Yohei Tanaka (Tohoku Univers...
2017 Aug 17
0
How to convert .Rdata file into .csv or something else?
...Thursday, August 17, 2017, 4:10:36 AM EDT, y tanaka <marineband2007 at gmail.com> wrote:
Dear mailing list members,
I am a beginner of this community.
I would like to analyze data in a .rdata file.
I ran the following code, but the object "d" remained empty.
d <- load("~/docdis/input/ch2/WV6_Data_R_v_2016_01_01.rdata")
I would like to know how to convert this file format into .csv or .txt.
I suppose this question is very basic, but I could not find solutions on
internet or in my textbooks.
I would appreciate it if someone would help me.
Yohei Tanaka (Tohoku Univers...