0

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!

Dirk Horsten
  • 3,753
  • 4
  • 20
  • 37
amisos55
  • 1,913
  • 1
  • 10
  • 21

1 Answers1

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

Dirk Horsten
  • 3,753
  • 4
  • 20
  • 37