You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[{$group: {//to get entire document_id: null,averageAge:{$avg: "$age"}}}]
What is a average age of both genders
[{$group: {//to get entire document_id: "$gender",averageAge:{$avg: "$age"}}}]
List the top 5 common fruits among the users
[//stage 1{$group: {_id: "$favoriteFruit",count:{//increment by 1 on finding a person with this fruit preference$sum: 1}},},//stage 2{$sort: {count: 1}},//stage3-find top k{$limit: 2}]