Skip to content

Commit

Permalink
Merge pull request #1245 from JuliaData/cjprybol-patch-1
Browse files Browse the repository at this point in the history
Remove disambiguation prefix on `head()` in docstring example
  • Loading branch information
cjprybol committed Oct 9, 2017
2 parents 3f07f79 + cce9f73 commit 8fd0851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dataframe/dataframe.jl
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ df2 = DataFrame(A = 1:10, B = v, C = rand(10))
dump(df1)
dump(df2)
describe(df2)
DataFrames.head(df1)
head(df1)
df1[:A] + df2[:C]
df1[1:4, 1:2]
df1[[:A,:C]]
Expand Down

0 comments on commit 8fd0851

Please sign in to comment.