Skip to content
Prev 367127 / 398506 Next

get() return nothing

Well, I am not trying to print anything. I just would like to get the dimension information for all the dataframes I created. Could you please help me to develop the script?
Thanks.
Ace
On Saturday, February 11, 2017 7:53 PM, Duncan Murdoch <murdoch.duncan at gmail.com> wrote:

        
On 11/02/2017 1:33 PM, Fix Ace via R-help wrote:
It's the difference between

for (i in 1:10) i

(which prints nothing) and

for (i in 1:10) print(i)

Duncan Murdoch