Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Standard Deviation

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

2 Replies
sujeetsingh
Master III
Master III

Here it is

http://community.qlik.com/thread/46850

\

Use fuction stdev (data)

jagan
Luminary Alumni
Luminary Alumni

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.