I am using nested map on has_many association in following method
@trial.treatment_selections
.map { |ts| ts.establishment_methods.map { |em| em.final_establishment.to_f }}
# => [[10.2, 10.1, 10.1], [11.4, 11.4, 10.9]]
Here treatment_selections has_many establishment_methods.
I'm not sure how to get following array:
[10.2, 10.1, 10.1, 11.4, 11.4, 10.9]