Skip to content

Commit

Permalink
Remove disambiguation prefix
Browse files Browse the repository at this point in the history
I think this was to get rid of a warning/error when a dependency of `DataTables` also imported `DataFrames` and the names conflicted? Either way, we don't need it anymore
  • Loading branch information
cjprybol committed Oct 9, 2017
1 parent eb3d10a commit cce9f73
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 cce9f73

Please sign in to comment.