Displaying 1 result from an estimated 1 matches for "lprint".
Did you mean:
print
2006 Aug 08
3
prefixing list names in print
With
print(list(A="a",B="b"))
it displays
$A
[1] "a"
$B
[1] "b"
I would like to add a common prefix to all the list tags after the $.
Pasting the prefix to the "names" does not work (appear after the $).
For example if the prefix would be "P", it should display:
P$A
[1] "a"
P$B
[1] "b"
I tried to add a