I want a data frame name to be determined by a command line argument. The following should make it clear what I was trying to do…I hope!
Execute using:
rterm --vanilla < c:/temp/myprog.txt --args XYZ
Contents of c:/temp/myprog.txt:
# I am using command line arguments
Args <- commandArgs(TRUE);
# Args[1] is the desired dataframe name
print(Args[1]);
# Create a simple dataframe
df <- c(c(1,2),c(3,4));
print(df);
# Save it
path <- 'c:/temp/mydata.rdata'
save(df, file=path);
# Clear the dataframe from memory
rm(df);
# Is it really gone?
print(df);
# Load the dataframe from disk
load(path);
# Did you get it?
print(df);
# --- This is where things start to go bad ---
# --- I know this is wrong, and I know why ---
# --- but it should make clear what it is ---
# --- I am attempting to do. ---
# Copy it to dataframe with name passed from command line
Args[1] <- df;
# Write it to disk with the new name
save(Args[1], file=path);
# Clear the dataframe from memory
rm(Args[1]);
# Is it really gone?
print(Args[1]);
# Load the dataframe from disk
load(path);
# Did you get it?
print(Args[1]);
# That's all
Thanks in advance.
** ADDED AFTER THE FACT…THIS WORKS…
C:\Program Files\R\R-2.14.2\bin\x64>rterm --vanilla < c:/temp/myprog.txt --args XYZ
> # I am using command line arguments
> Args <- commandArgs(TRUE);
>
> # Args[1] is the desired dataframe name
> print(Args[1]);
[1] "XYZ"
>
> # Create a simple dataframe
> df <- c(c(1,2),c(3,4));
> print(df);
[1] 1 2 3 4
>
> # Save it
> path <- 'c:/temp/mydata.rdata'
> save(df, file=path);
>
> # Clear dataframe so I can see if it
> # is really populated by the load
> rm(df);
>
> # Load the dataframe from disk
> load(path);
>
> # Did you get it?
> print(df);
[1] 1 2 3 4
>
> # --- This is where things start to go bad ---
> # --- I know this is wrong, and I know why ---
> # --- but it should make clear what it is ---
> # --- I am attempting to do. ---
>
> # Copy it to dataframe with name passed from command line
> assign(Args[1], df);
>
> # Write it to disk with the new name
> save(list=Args[1], file=path);
>
> # Clear memory so I can see if the dataframe
> # is really populated by the load
> rm(df);
> rm(XYZ);
>
> # Load the dataframe from disk
> load(path);
>
> # Did you get it? Is its name as expected?
> # (In subsequent processing I will be able to
> # hard code the name as shown here.)
> print(XYZ);
[1] 1 2 3 4
>
Try
(See
?assign).If
Args[1]contains the string ‘XYZ’, then you will be able to refer to the dataframe byXYZ.e.g.:
When you save,
save(df,...)won’t do the job – it’ll savedfwith the variable namedf.Instead, you pass in the name of the variable you want to save using the
listargument to save.For example:
When you then
load('tmp.rda')you’ll have the variable XYZ containing whatever it contained when you saved it.So, for you: