Skip to content

Commit

Permalink
Merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
onyxfish committed Feb 27, 2017
2 parents a72f010 + ce3544f commit b1423f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion agate/csv_py3.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from agate.exceptions import FieldSizeLimitError

POSSIBLE_DELIMITERS = [',', '\t', ';', ' ', ':', '|']
POSSIBLE_DELIMITERS = [',', '\t', ';', ':', '|']


class Reader(six.Iterator):
Expand Down
2 changes: 1 addition & 1 deletion docs/cookbook/sql.rst
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ agate:
doctors = patients.group_by('doctor')
patient_ages = doctors.aggregate([
('patient_count', agate.Count())
('patient_count', agate.Count()),
('age_mean', agate.Mean('age')),
('age_median', agate.Median('age'))
])
Expand Down
2 changes: 1 addition & 1 deletion docs/cookbook/statistics.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ You can also generate aggregate statistics for subsets of data (sometimes referr
doctors = patients.group_by('doctor')
patient_ages = doctors.aggregate([
('patient_count', agate.Count())
('patient_count', agate.Count()),
('age_mean', agate.Mean('age')),
('age_median', agate.Median('age'))
])
Expand Down

0 comments on commit b1423f5

Please sign in to comment.