Featured Post

Mastering flat_map in Python with List Comprehension

Image
Introduction In Python, when working with nested lists or iterables, one common challenge is flattening them into a single list while applying transformations. Many programming languages provide a built-in flatMap function, but Python does not have an explicit flat_map method. However, Python’s powerful list comprehensions offer an elegant way to achieve the same functionality. This article examines implementation behavior using Python’s list comprehensions and other methods. What is flat_map ? Functional programming  flatMap is a combination of map and flatten . It transforms the collection's element and flattens the resulting nested structure into a single sequence. For example, given a list of lists, flat_map applies a function to each sublist and returns a single flattened list. Example in a Functional Programming Language: List(List(1, 2), List(3, 4)).flatMap(x => x.map(_ * 2)) // Output: List(2, 4, 6, 8) Implementing flat_map in Python Using List Comprehension Python’...

Social Analytics - How Marketers Will Use

Of all the windows through which a business can peer into an audience, seems most enticing. The breadth of subjects, range of observations, and, above all, the ability to connect and draw inferences make hugely exciting for anyone who is interested in understanding and influencing past, present and potential customers, employees, or even investors.

As individuals leave traces of their activities - personal, social and professional - on the internet, they allow an unprecedented view into their lives, thoughts, influences and preferences. Social analytics attempts to draw useful understanding and inferences, which could be relevant to marketers, sales persons, HR managers, product designers, investors and so on. Thus, as social tools like Facebook, Twitter, LinkedIn, WhatsApp, and many more, host a plethora of social activities of many people, a humongous amount of data is generated about people's preferences, behaviour and sentiments. Like any data, it is amenable to analysis to gain useful insights.

The challenge comes from the sheer volume, velocity, and variety. It is very difficult to ensure that the analysis is relevant and reliable. Besides the daunting technical intricacies of setting up the appropriate analytics, the aspects of choosing information sources, filtering the right data, and its interpretation and aggregation are susceptible to errors and biases. For example, some social activities are relatively easier to access (like activity on Twitter, or public updates on Facebook), many are not. Some types of data (like text, or location) are easy to search and interpret, many (like pictures) are not. So a good analysis model must judiciously compensate for the nature of the sources included, and hence it could be at times very difficult to assess if the analysis is useful or just meaningless mumbo-jumbo.

Read more

Comments

Popular posts from this blog

SQL Query: 3 Methods for Calculating Cumulative SUM

Big Data: Top Cloud Computing Interview Questions (1 of 4)

5 SQL Queries That Popularly Used in Data Analysis