from R I am used to assign a simple value to a matrix via using indexing like:
> mat <- matrix(NA,2,3)
> mat
[,1] [,2] [,3]
[1,] NA NA NA
[2,] NA NA NA
> mat[1,2] <- 12
> mat
[,1] [,2] [,3]
[1,] NA 12 NA
[2,] NA NA NA
>
Now I am have to run some scripts in Python and want to collect values in 2D matrices as well. The matrices should have column and rownames and I want to access them also via an index. So far I thought about two ways:
- Either using RPy and doing it the way I am used to like in R, although I don't know how indexing command is working with RPy yet.
like:
import rpy2.robjects as robjects
names = ['A','B','C']
dimnames = robjects.r['list'](names,names)
mat = robjects.r['matrix'](NA, nrow = len(names), ncol=len(names), dimnames = dimnames)
# and here how to index and assign e.g. the value 12 to the cell mat["A","B"]??
- Or to use a Python native NumPy array which might be a cleaner solution. At the moment I just don't know how to create a matrix/array with the names list and how to assign values afterwards with an index.
Any suggestions?
Thank you!!
NAnot"NA". – seancarmody Aug 24 '12 at 10:20robjects.NA_Realin the python code notNA. – seancarmody Aug 24 '12 at 10:47