On Wednesday, April 15, 2015 at 10:36:17 AM UTC-4, Marcus Appelros wrote: > > The code you posted works fine here... Are you using some other package > also that supplies another head? Which versions do you have? >
Yes, that seems likely. I imagine you're overwritten (and not extended) the `head` name within your current scope — either by `using` another package that provides a different head after using DataFrames, or by writing your own head methods without explicitly importing DataFrames.head. Perhaps try `DataFrames.head(df)`.
