jdeboer / ganalytics

Interact with Google Analytics using R
Other
75 stars 30 forks source link

Implement method of And (and &) for use with segment related classes #38

Open jdeboer opened 9 years ago

jdeboer commented 9 years ago

For example:

Segment(Expr(~pagepath %matches% "products")) & Segment(Expr(~source == "google"))

Should be equivalent to:

Segment(Include(Expr(~pagepath %matches% "products")), Include(Expr(~source == "google")))