The summary tag has no wiki summary.
0
votes
4answers
52 views
Concurrent Modification Exception in LinkedList
I'm looking for a good way, to build a limited linked list. If the linked list is "full", the first element will be removed and the new one will be added. So I always have the "newest" "limit-size" ...
0
votes
0answers
22 views
How can i make an element to cover/overlap another element?
I have an element (summary in this case) and right below there is a box.
When I click the details to see the content of the summary, the rest of the content is blocked by the box below, I can't see ...
1
vote
0answers
59 views
Add total or average to ggplot with color legend
I have a plot with a color legend, and would like to add a total/average geom_... series to it.
For example:
d <- ggplot(data=mtcars, aes(x=cyl, y=mpg, color=factor(vs))) + geom_point()
d + ...
0
votes
2answers
20 views
flatten table into summary report with details in SQL (MySQL)
Is it possible to flatten out a database table for a report using sql (mysql). I can do with with php but it would be nice if I could do it simpler in sql.
example:
1) input: raw data - one line ...
0
votes
2answers
47 views
Getting difference between summs
I have this mysql query
SELECT YEAR(date_entered), MONTHNAME(date_entered), SUM(amount)
FROM opportunities
GROUP BY YEAR(date_entered), MONTH(date_entered);
which brings back this data
...
0
votes
0answers
29 views
Crystal Report 9 Summary Issue
In Crystal 9, I have a calculated fields for a count of attendees to a event(Qualified).
If there are more than 2 attendees it counts as a 1.
Attendees are in the detail section.
In the group2 ...
0
votes
3answers
34 views
Automated data frame summaries with mixed data types
I am trying to automatically create a new data frame that, given an existing data frame, contains either the median of a numerical variable or the most common category for a factor. So:
Number ...
0
votes
1answer
108 views
LexRank summarization algorithm
I am working on an implementation of the LexRank (link) algorithm for a project.
The thing I didn't understand about the algorithm is after I create the final matrix where the calculated tf-idf ...
1
vote
1answer
49 views
How to show generic types in C# XML summary
/// <summary>
/// Something about this generic method which works with ??? type.
/// </summary>
/// <typeparam name="T">∙∙∙</typeparam>
/// <returns></returns>
...
0
votes
1answer
188 views
how to set preference summary without the deprecated method findPreference for android 4.0 +
i want to set a preference summary , usually it can be done with
EditTextPreference Pref = (EditTextPreference) findPreference(key);
Pref.setSummary("new summary");
but since Android 4.1, ...
1
vote
1answer
62 views
Open <details> element when window width => 768px
I´m developing a responsive website where I use the <details> <summary> elements to show aditional information in the services section. How can I change the details "open" attribute when ...
0
votes
1answer
333 views
Magento - Order summary onepage checkout
I'm working on a Magento site, which is using the Magento's onepage checkout.
I need to show an order summary on the right hand side of the checkout process (instead of the "your checkout process ...
3
votes
3answers
61 views
Isolate the significance column from summary(aov()) in r
How do I isolate the significance column in summary(aov()) taking the pre-installed data warpbreaks as an example...
> a<-summary(aov(breaks~wool*tension,data=warpbreaks))
> a
...
0
votes
3answers
117 views
Subsetting and Summing a Data Frame
My goal is: given a dataframe of dichotomous responses (e.g., 0s and 1s), how can I produce a summary matrix that: 1) has two columns (one for answering the first question correctly, and the other for ...
2
votes
1answer
102 views
Index from accumarray with max/min (MATLAB)
I have a vector and a cell array (with repeating strings) with the same size. The cell array defines the groups. I want to find min/max values in the vector for each group.
For example:
value = ...
-2
votes
1answer
35 views
PHP MYSQL How can i order my results by user and mail them the task associated with them [closed]
I have been programming a project task management system for my work since they did not like any of the ones you can buy. One of the features they would like is under each project, a button that the ...
0
votes
2answers
148 views
Use a summary field in an expression in SSRS reports
I have the details of my report being summed up in a summary expression, all works fine. The fields are decimal values of hours worked. Thus, the summary value is also a decimal value. I'd like to ...
0
votes
2answers
31 views
Summary column on EF
Is it possible to add summary properties(no database column) according LINQ from another property(column) in EF generated class from database and this property don't update(delete or remove from ...
0
votes
1answer
114 views
Using a summed field for a calcuation in devexpress
I am trying to get the value of a field that is populated based on a parameter and use it to calculate a sum. I believe the way to do this is to use a custom summary. I noticed devexpress has ...
0
votes
0answers
173 views
VBA Loop Over Several Directories and Merge Data in Summary Workbook
I have a macro that runs over a specified directory, creates a new summary workbook, and then copies selected data from all the excel files present (in the defined directory) into that summary ...
0
votes
2answers
41 views
How to obtain summary rows where each summary is dependent on another column?
Oracle11g
How to obtain summary rows where each pair of rows meet minimum sums?
When I specify where total_lot > N then I exclude rows I want to retain.
I want to answer this data question: What ...
4
votes
5answers
177 views
Create summary table of categorical variables of different lengths
In SPSS it is fairly easy to create a summary table of categorical variables using "Custom Tables":
How can I do this in R?
General and expandable solutions are preferred, and solutions using the
...
0
votes
2answers
46 views
Find the summary based on the another column in R
I have a data set which has 5 columns in it. In one column there is date, in second column there is surface data, in 3rd column bottom , in 4th id and in 5th diff .
For example I have a simple data ...
1
vote
0answers
41 views
Crystal reports complex summaries
We have a complex report that includes several calculations at different levels.
What I want to do is create a formula that says, "if any of the records at this level fulfill this condition, then ...
0
votes
1answer
104 views
Using summary(glm-object) inside ldply() with the summarise() - function
How do i use the summary-function inside a ldply()-summarise-function to extract p-values?
Example data:
(The data frame "Puromycin" is preinstalled)
library(reshape2)
library(plyr)
Puromycin.m ...
1
vote
1answer
72 views
Calculate summary data with R
I have data frame that looks like this:
set.seed(123)
df <- data.frame(factor1 = rep(c("A", "B"),50),
factor2 = rep(c("X","X", "Y", "Y"),25),
value = rnorm(100))
...
1
vote
1answer
1k views
Conditional Distinct Count in Crystal Reports
I have a dataset like this:
ID PersonID ClassID Attended Converted
1 1 1 1 0
2 1 1 1 1
3 1 1 1 ...
0
votes
1answer
71 views
Visual Studio doesn't show my web service function summary as calling that function
I want to show my summaries when the function is getting called but I can not see however I wrote summaries. Here is my codes:
calling the webmethod:
webservice side:
0
votes
1answer
202 views
Output replacement summary in ant replaceregexp task
Is there a summary="true" equivalent in ant replaceregexp tasks like there is in the simple ant replace task?
Here's my use case. I am replacing an ant replace task with a replaceregexp task, like ...
0
votes
0answers
75 views
SQL Switch Case Query Statement Function Cycle Dates?
I am trying to work out some logic here. No clue how to apply it in SQL.
I have a view With ID, Name, Worked_Date, Work_Type, Work_Category, Work_Location, Total_Worked_Dates_in_Table and Fees
I ...
1
vote
2answers
110 views
Summary data tables from wide data.frames
I am trying to find lazy/easy ways of creating summary tables/data.frames from wide data.frames. Assume a following data.frame, but with many more columns so that specifying the column names takes a ...
2
votes
1answer
83 views
Creating a summary table based on range categories in r
My data is in the following format:
input<-data.frame(
region=c("A","T","R","R","T"),
geomorph=c("F","F","S","S","P"),
depth=c(2.6,3.5,5.8,6.7,8.9))
> input
region geomorph depth
...
0
votes
2answers
81 views
How to summarize multiple data frames quickly in R
Thanks in advance for any help on this. I am trying to simply summarize multiple data frames in R I have a file that I am reading in that has an output like this:
NDC CHARGE GENERIC
...
-1
votes
1answer
77 views
Plot results from describe.by{psych} output [closed]
I have the results from a describe.by{psych} applied on a dataframe. The results is a list.
List of 1000
$ 1 :Classes ‘psych’, ‘describe’ and 'data.frame': 20 obs. of 13 variables:
..$ var ...
3
votes
2answers
133 views
Summary of data for each year in R
I have a data with two columns. In one column it is date and in another column it is flow data.
I was able to read the data as date and flow data. I used the following code:
creek <- ...
2
votes
1answer
127 views
R aggregate gives differently structured results using subsets from the same data
I'm making diurnal cycles of windspeed based on a dataframe (ball) of several year's hourly data. I want to plot them by season, so I subset out the dates I need and join them like this:
b8 = ...
1
vote
1answer
189 views
summarise() - calculating percentages and counts of factor
I'm trying to use summarise() from the plyr-packge to calculate percentages of occurences of each level in a factor. EDIT: The Puromycin data is in the base R installation
My data look like this:
...
0
votes
0answers
11 views
Is there any library to generate snippets / summary for search terms
I am using an database search i need to generate snippet or summery for my text . Do java has any library to do that ??
0
votes
0answers
33 views
Calculate se using numcolwise
(I'm still learning r language, so please bear with me)
I'm trying to calculate the mean and standard error by site and time (net represents replicates) for the following data so that I can graph it:
...
1
vote
1answer
1k views
How to save jmeter Summary Report and other graphs (eg. Response Time Graph ) automatically
Each time when I run Jmeter script I have to save the summary report and graphs manually.
I want them to be stored automatically.
I tried to write the Summary results to file as ...
0
votes
2answers
127 views
Data summary based on multiple categorical variables
I'm trying to create a summary based on a data that contains the following columns:
Trx_Date Brand Cust_Num Item_Qty Item_Price
I am trying to create a summary of the Item_Qty and ...
0
votes
1answer
29 views
Logging Summary screen with InstallAnywhere
I am using console based installer of InstallAnywhere 2010 and want to log all the content of the summary screen.
Any idea, how o achieve that?
Thanks.
-1
votes
1answer
34 views
is there an api to combine articles and quote the impression? [closed]
Just the title says. I spent an hour looking, but didn't really find anything. I am looking for something like summly.com, but with an open API, summary of 2 to 3 sentences and to combine articles. ...
0
votes
3answers
103 views
How do you find the sample sizes used in calculations on r?
I am running correlations between variables, some of which have missing data, so the sample size for each correlation are likely different. I tried print and summary, but neither of these shows me how ...
1
vote
0answers
40 views
Macro required to cycle through list on sheet 2 and fetch back info from sheet 1
I use this website a lot for complicated excel issues and find the knowledge base to be astounding - thanks :)
Now I have a "hard to explain" excel query I hope somebody can help with - I will ...
2
votes
2answers
105 views
How to create summary data frame with all possibilities in R
If I have a vector of possible hours and possible items:
possible.items = c(12,13,14,15,16)
possible.hours = 0:23
And some data on customers who purchased those items at the hour they purchased ...
0
votes
3answers
58 views
php summarize variables seperated by comma ending with dot
I've been thinking hard about this, but I just can't get myself an answer...
When I summarize, for example, all the people who an e-mail has been sent to, I want to seperate them with a comma BUT end ...
0
votes
1answer
91 views
sum as comma separated on MySQL table
I have a mysql view wich has "sum" and "group by" functions,its getting total price for each customer by customer name, I want to make this to sum for pieces that ordered, not as different numeric ...
0
votes
2answers
52 views
Is it possible to use ToString() value in class summary xml tag?
Is it possible to use ToString() in summary xml tag?
/// <summary>
/// I want to use the value from ToString() here.
/// </summary>
public class TheObject
{
...
0
votes
1answer
111 views
Solr/Lucene Copyfield summary
I am using Solr. I created a copyfield "text" which contains multiple normal fields. When I do a search, the "text" field is returned as an array, but I cannot define programatically in what field the ...




