search for: 70f5536c

Displaying 1 result from an estimated 1 matches for "70f5536c".

Did you mean: 705536
2009 Apr 08
1
Student
Hi, I have problem. In the function below (test and test2) i want the function test not to print the variable data but i want the function test2 to use the variable test$data. This is the creation of the variable data: > matrice=c(1:10) > matrice=matrix(matrice,nrow=5,ncol=2) This is the function test: > test=function(data){ + return(list(x=5,data=data)) + } This is the function