Tag: Programming
-
Journey from Data to Wisdom
It is interesting to see the voluminous data available everywhere, the world of devices and internet has made it very easy for a lot of people and organizations to access data in raw form, and with the advent of cloud computing the power of the internet as grown manyfold. However, it is important to note…
-
Aggregate function – using $project and $group
If you want the aggregated data to be stored in a specific column format then use $project. Here is an example:- The aggregated data structure will be as shown below in database:-
-
The Zen of Python
>>> import this The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated. Flat is better than nested. Sparse is better than dense. Readability counts. Special cases aren’t special enough to break the rules. Although practicality beats purity.…