Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi all,
i have two fields, one being date and the other being tweet text.
I need to cal. standard deviation for number of tweets(count) over date.
Thanks
Hi,
Try like this
Tweets:
LOAD
*,
1 AS TweetCount
FROM TweetData;
TweetsByDay:
LOAD
Date,
Count(TweetCount) AS TweetsByDate
RESIDENT Tweets;
Now in chart try like this
Chart :
Dimension: Date
Expression: Stddev(TweetsByDate)
Hope this helps you.
Regards,
Jagan.