2019/02/27
2019/02/19
2019/02/14
Agrupar objetos por fecha de creacion
accounts.each do |account|
by_years = Tweet.where(screen_name: account).group_by {|u| u.twt_created_at_date.year }
by_years.keys.sort.each do |year|
by_months = by_years[year].group_by {|u| u.twt_created_at_date.month }
by_months.keys.sort.each do |month|
#DO SOMETHING
end
end
end
2019/02/13
Ordenar un array con otro array
new_order = ['ARENA-PCN-PDC-DS', 'ARENA', 'DS', 'FMLN', 'GANA', 'PCN', 'PDC', 'TOTAL ARENA-PCN-PDC-DS', 'VAMOS', 'ABSTENCIONES', 'FALTANTES', 'IMPUGNADOS', 'INUTILIZADAS', 'NULOS', 'SOBRANTES']
votos.sort_by { |a| new_order.index(a[0]) }
votos.sort_by { |a| new_order.index(a[0]) }
Suscribirse a:
Entradas (Atom)