-1

Should I use weighted average vs arithmetic average in my data?

Columns(Month, Bookings, Day, Bookings/Day)

Should I do Bookings/Days OR Avg(Bookings/day) to get average by month?

Alex Butenko
  • 3,664
  • 3
  • 35
  • 54
Sam Ali
  • 1
  • 3
  • We cannot answer this, as there is no correct answer here; talk to customers and see what the consensus is, and/or offer a switch somewhere to choose between the two methods. – Ken Y-N Jan 10 '18 at 03:42
  • I'm voting to close this question as off-topic because it's about statistics and not programming or coding. – Pang Jan 11 '18 at 00:54

1 Answers1

0

You have to take Weighted Average for getting average by month [sumof(Day's*Bookings)]/Month

DHARMENDRA SINGH
  • 607
  • 5
  • 21