The trend tag has no wiki summary.
3
votes
1answer
62 views
Hot topics extraction from Twitter
I am building a website of finding and showing the hottest topics curretly on Twitter for my final project. Does anyone know how to extract the topics from the huge amount of tweets in the last week, ...
2
votes
4answers
69 views
Algorithm: is there a linear trend in data?
I am having a continuously incoming data represented by an array of integer x = [x1,...,xn], n<1 000 000. Each two elements satisfy the following condition x[i] < x[i + 1].
I need to detected ...
1
vote
1answer
49 views
Trending SQL Query
So what I am trying to do is make a trending algorithm, i need help with the SQL code as i cant get it to go.
There are three aspects to the algorithm: (I am completely open to ideas on a better ...
1
vote
1answer
56 views
How to calculate trends from text messages
I'm working on a Hungarian twitter client and I would like to implement a trend system. So I have a database full of texts and dates (unix timestamps) that represent the creation date of the tweet.
...
0
votes
1answer
82 views
How do I recreate an Excel formula which calls TREND() in C#?
I'm building a .net page to mimic a spreadsheet. The sheet contains this formula
=ROUND(TREND(AA7:AE7,AA$4:AE$4,AF$4),1)
Can someone provide the C# equivalent of TREND() ? Alternatively if anyone ...