'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 1:[1]

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

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

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Dirk Horsten