diff --git a/docs/src/man/getting_started.md b/docs/src/man/getting_started.md index b4fc4e1a17..2b159b0b26 100644 --- a/docs/src/man/getting_started.md +++ b/docs/src/man/getting_started.md @@ -145,5 +145,4 @@ In the next section, we'll discuss generic I/O strategy for reading and writing While the `DataFrames` package provides basic data manipulation capabilities, users are encouraged to use the following packages for more powerful and complete data querying functionality in the spirit of [dplyr](https://github.com/hadley/dplyr) and [LINQ](https://msdn.microsoft.com/en-us/library/bb397926.aspx): -- [DataFramesMeta.jl](https://github.com/JuliaStats/DataFramesMeta.jl) provides metaprogramming tools for `DataFrames` and associative objects. These macros improve performance and provide more convenient syntax. - [Query.jl](https://github.com/davidanthoff/Query.jl) provides a LINQ like interface to a large number of data sources, including `DataFrame` instances. diff --git a/src/groupeddataframe/grouping.jl b/src/groupeddataframe/grouping.jl index 95654d353c..4092dc872d 100644 --- a/src/groupeddataframe/grouping.jl +++ b/src/groupeddataframe/grouping.jl @@ -93,10 +93,6 @@ See the following for additional split-apply-combine operations: Piping methods `|>` are also provided. -See the -[DataFramesMeta](https://github.com/JuliaStats/DataFramesMeta.jl) -package for more operations on GroupedDataFrames. - ### Examples ```julia