Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
384 views

Data in different resolutions

I have two tables, records are being continuously inserted to these tables from outside source. Lets say these tables are keeping statistics of user interactions. When a user is clicking a button the ...
7
votes
2answers
196 views

Summarizing a Wikipedia Article

I find myself having to learn new things all the time. I've been trying to think of ways I could expedite the process of learning new subjects. I thought it might be neat if I could write a program ...
4
votes
3answers
461 views

tapply() function dependent on multiple columns in R

In R, I have a table with Location, sample_year and count. So, Location sample_year count A 1995 1 A 1995 1 A 2000 3 B 2000 1 B ...
3
votes
2answers
284 views

Plotting summary statistics

For the following data set, Genre Amount Comedy 10 Drama 30 Comedy 20 Action 20 Comedy 20 Drama 20 I want to construct a ggplot2 line graph, where the x-axis is Genre and the y-axis is ...
3
votes
1answer
243 views

Software to find the most occurring unique words in a file

I remember once visiting a website that would present a book/novel summary in the most interesting way. It would show a list of words that were repeated most often in that book and which were ...
2
votes
3answers
72 views

R. summarizing data without merge

I have a dataframe (df) of goals scored against various teams by date gamedate teamID Gls 1992-08-22 CHL 3 1992-08-22 MNU 1 1992-08-23 ARS 0 1992-08-23 LIV 2 1992-08-24 MNU 0 ...
2
votes
3answers
560 views

R - calculate with unique combinations of values

I would like to work with unique combinations of var1 and var2. foo <- data.frame(var1= c(1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 4, 4, 4, 4), var2=c(1, 1, 1, 1, 2, 2, 1, 1, 2, 2, 2, 2, 2, 3, 3)) As ...
2
votes
2answers
92 views

disaggregate summarised table in SQL Server 2008

I've received data from an external source, which is in a summarised format. I need a way to disaggregate this to fit into a system I am using. To illustrate, suppose the data I received looks like ...
2
votes
2answers
2k views

MySQL ON DUPLICATE KEY UPDATE with nullable column in unique key

Our MySQL web analytics database contains a summary table which is updated throughout the day as new activity is imported. We use ON DUPLICATE KEY UPDATE in order that the summarization overwrites ...
1
vote
1answer
121 views

Generating a MySQL hourly breakdown from current timestamp

I'm afraid this is probably a very embarrassingly easy question - but my mind is just completely stuck at this hour. I have a table that stores the number of activities carried out by different ...
1
vote
1answer
86 views

problem building summarize gem

I'm trying to use the Summarize gem in Ruby, but when I do gem install summarize, i get: Building native extensions. This could take a while... ERROR: Error installing summarize: ERROR: Failed ...
1
vote
1answer
58 views

background of summarization function in winword

There is an automatic summarization tool in Winword. Does anybody know the background, i.e. which algorithms are used or where I can find additional background information concerning this feature? ...
1
vote
5answers
1k views

About “AUTOMATIC TEXT SUMMARIZER (lingustic based)”

I am having "AUTOMATIC TEXT SUMMARIZER (linguistic approach)" as my final year project. I have collected enough research papers and gone through them. Still i am not very clear about the ...
0
votes
0answers
49 views

easier way to rank wordnet synsets?

i am doing a wordnet-based text sumarizer project..where I need to rank the extracted synsets...i have looked up this PageRank based method I have also a method in my the algo that I am ...
0
votes
1answer
170 views

what is appropriate for me? generateAllGrams() or is generateCollocations() enough for me?

I am developing a project on wordnet-based document summarizer.in that i need to extract collocations. i tried to research as much as I could, but since i have not worked with Mahout before I am ...
0
votes
1answer
44 views

Summarising data using sql

I have logging entry table with the relevant following columns: eventype, userid. I can simply summarise the data using the following query to get a total for each user event type SELECT ...
0
votes
1answer
222 views

How to select part of a text on mysql?

I have a column saved as LONGTEXT on mysql. This text saves rich text. I'm currently reading all the text then fixing it using javascript to get the first 100 characters in a way not to split the word ...
0
votes
1answer
74 views

Count records having three or more items

I'd like to group records in two categories: Items having three or more records Items having less than three items How do I go about this? I'm looking at using annotate().