1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
# Groupdate
The simplest way to group by:
- day
- week
- hour of the day
- and more (complete list below)
:tada: Time zones - including daylight saving time - supported!! **the best part**
:cake: Get the entire series - **the other best part**
Supports PostgreSQL, MySQL, MariaDB, SQLite, and Redshift, plus arrays and hashes
:cupid: Goes hand in hand with [Chartkick](https://www.chartkick.com)
[](https://github.com/ankane/groupdate/actions)
## Installation
Add this line to your application’s Gemfile:
```ruby
gem "groupdate"
```
For MySQL and MariaDB, also follow [these instructions](#additional-instructions).
## Getting Started
```ruby
User.group_by_day(:created_at).count
# {
# Wed, 01 Jan 2025 => 50,
# Thu, 02 Jan 2025 => 100,
# Fri, 03 Jan 2025 => 34
# }
```
Results are returned in ascending order by default, so no need to sort.
You can group by:
- second
- minute
- hour
- day
- week
- month
- quarter
- year
and
- minute_of_hour
- hour_of_day
- day_of_week (Sunday = 0, Monday = 1, etc)
- day_of_month
- day_of_year
- month_of_year
Use it anywhere you can use `group`. Works with `count`, `sum`, `minimum`, `maximum`, and `average`. For `median` and `percentile`, check out [ActiveMedian](https://github.com/ankane/active_median).
### Time Zones
The default time zone is `Time.zone`. Change this with:
```ruby
Groupdate.time_zone = "Pacific Time (US & Canada)"
```
or
```ruby
User.group_by_week(:created_at, time_zone: "Pacific Time (US & Canada)").count
# {
# Sun, 05 Jan 2025 => 70,
# Sun, 12 Jan 2025 => 54,
# Sun, 19 Jan 2025 => 80
# }
```
Time zone objects also work. To see a list of available time zones in Rails, run `rake time:zones:all`.
### Week Start
Weeks start on Sunday by default. Change this with:
```ruby
Groupdate.week_start = :monday
```
or
```ruby
User.group_by_week(:created_at, week_start: :monday).count
```
### Day Start
You can change the hour days start with:
```ruby
Groupdate.day_start = 2 # 2 am - 2 am
```
or
```ruby
User.group_by_day(:created_at, day_start: 2).count
```
### Time Range
To get a specific time range, use:
```ruby
User.group_by_day(:created_at, range: 2.weeks.ago.midnight..Time.now).count
```
To expand the range to the start and end of the time period, use:
```ruby
User.group_by_day(:created_at, range: 2.weeks.ago..Time.now, expand_range: true).count
```
To get the most recent time periods, use:
```ruby
User.group_by_week(:created_at, last: 8).count # last 8 weeks
```
To exclude the current period, use:
```ruby
User.group_by_week(:created_at, last: 8, current: false).count
```
### Order
You can order in descending order with:
```ruby
User.group_by_day(:created_at, reverse: true).count
```
### Keys
Keys are returned as date or time objects for the start of the period.
To get keys in a different format, use:
```ruby
User.group_by_month(:created_at, format: "%b %Y").count
# {
# "Jan 2025" => 10
# "Feb 2025" => 12
# }
```
or
```ruby
User.group_by_hour_of_day(:created_at, format: "%-l %P").count
# {
# "12 am" => 15,
# "1 am" => 11
# ...
# }
```
Takes a `String`, which is passed to [strftime](http://strfti.me/), or a `Symbol`, which is looked up by `I18n.localize` in `i18n` scope 'time.formats', or a `Proc`. You can pass a locale with the `locale` option.
### Series
The entire series is returned by default. To exclude points without data, use:
```ruby
User.group_by_day(:created_at, series: false).count
```
Or change the default value with:
```ruby
User.group_by_day(:created_at, default_value: "missing").count
```
### Dynamic Grouping
```ruby
User.group_by_period(:day, :created_at).count
```
Limit groupings with the `permit` option.
```ruby
User.group_by_period(params[:period], :created_at, permit: ["day", "week"]).count
```
Raises an `ArgumentError` for unpermitted periods.
### Custom Duration
To group by a specific number of minutes or seconds, use:
```ruby
User.group_by_minute(:created_at, n: 10).count # 10 minutes
```
### Date Columns
If grouping on date columns which don’t need time zone conversion, use:
```ruby
User.group_by_week(:created_on, time_zone: false).count
```
### Default Scopes
If you use Postgres and have a default scope that uses `order`, you may get a `column must appear in the GROUP BY clause` error (just like with Active Record’s `group` method). Remove the `order` scope with:
```ruby
User.unscope(:order).group_by_day(:count).count
```
## Arrays and Hashes
```ruby
users.group_by_day { |u| u.created_at } # or group_by_day(&:created_at)
```
Supports the same options as above
```ruby
users.group_by_day(time_zone: time_zone) { |u| u.created_at }
```
Get the entire series with:
```ruby
users.group_by_day(series: true) { |u| u.created_at }
```
Count
```ruby
users.group_by_day { |u| u.created_at }.to_h { |k, v| [k, v.count] }
```
## Additional Instructions
<a name="for-mysql"></a>
### For MySQL and MariaDB
[Time zone support](https://dev.mysql.com/doc/refman/8.0/en/time-zone-support.html) must be installed on the server.
```sh
mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql
```
You can confirm it worked with:
```sql
SELECT CONVERT_TZ(NOW(), '+00:00', 'Pacific/Honolulu');
```
It should return the time instead of `NULL`.
## History
View the [changelog](https://github.com/ankane/groupdate/blob/master/CHANGELOG.md)
## Contributing
Everyone is encouraged to help improve this project. Here are a few ways you can help:
- [Report bugs](https://github.com/ankane/groupdate/issues)
- Fix bugs and [submit pull requests](https://github.com/ankane/groupdate/pulls)
- Write, clarify, or fix documentation
- Suggest or add new features
To get started with development and testing, check out the [Contributing Guide](CONTRIBUTING.md).
|