Skip to content
Prev 325604 / 398513 Next

hist function in a for loop

Hello,

Your code doesn't work because you are calling a non-function:

hist(singlefile$CL1( ... )) # here

singlefile$CL1 is not a function.

For us to be able to help you please do the following.

1. paste the output of the command below in a post

dput(head(singlefile, 50))

2. Post a call to hist() that does work, without a for loop.

Rui Barradas