i am relatively new to R and need to create an object "Sigma".
Can anyone give me a concise answer as I feel like Im pulling my hair out?
TIA
i am relatively new to R and need to create an object "Sigma".
Can anyone give me a concise answer as I feel like Im pulling my hair out?
TIA
One approach to create an object is to call the generic of the class of object you want. For example, if you wanted to create a vector, you'd call vector
Sigma <- vector()
Other options include matrix
, list
and data.frame
.