Displaying 2 results from an estimated 2 matches for "plotxrang".
Did you mean:
plotxrange
2003 May 30
2
Need help installing qtoolbox
I have windows version of R v1.6.2
I have downloaded the qtoolbox.zip from
http://www.cmis.csiro.au/S-PLUS/qtoolbox/
My R command line is
> install.packages("C:/Program Files/R/qtoolbox.zip", .libPaths()[1], CRAN =
NULL)
and I get the following error message:
updating HTML package descriptions
Warning message:
error -1 in extracting from zip file
>
Is there another way to
2011 Nov 11
2
One step way to create data frame with variable "variable names"?
Suppose
plotx <- "someName"
modx <- "otherName"
plotxRange <- c(10,20)
modxVals <- c(1,2,3)
It often happens I want to create a dataframe or object with plotx or
modx as the variable names. But can't understand syntax to do that.
I can get this done in 2 steps, creating the data frame and then
assigning names, as in
newdf <- data.frame( c...