Search code examples
rsasoperatorsiml

What is the equivalent of the SAS IML symbol ` in R


I am looking through a function as below in SAS IML

a = {34, 55, 67};
aT = a`;

what does a' (I could not print it here correctly but the function has the correct sign) do in SAS and what is the equivalent function in R?

Thanks!


Solution

  • For the explanation, see the SAS IML language regerence manual.

    In r, you have the t()- function to do that. See for instance here