groupdate
日付/時刻でレコードをグループ化するために gem を使用しています。レコードをグループ化し、having 句でユーザーを選択してから、日付/月/時刻でレコードをグループ化します。しかし、私が望む適切な結果が得られません。例えば:
User.group_by_month(:created_at).count # gives proper result but
User.joins("LEFT JOIN devices ON devices.user_id=users.id").group("users.id").having("COUNT(devices.id)=0").count #gives all users in hash while i want only count for the months.
chartkick
これは、 gemを使用してチャートを表示するために使用しています。
どんな助けでも大歓迎です。