Questions tagged [summary]

Summary statistics of a set of observations include the mean, median & the standard deviation.

In descriptive statistics, summary statistics are used to summarize a set of observations, in order to communicate the largest amount of information as simply as possible. Statisticians commonly try to describe the observations in:

  • a measure of location, or central tendency, such as the arithmetic
  • a measure of statistical dispersion like the standard deviation
  • a measure of the shape of the distribution like skewness or kurtosis
  • if more than one variable is measured, a measure of statistical dependence such as a coefficient

Source: Wikipedia

1285 questions
0
votes
1 answer

Intellisense doesn't work - Either with Summary Tag

I don't know what is going on.. I did a Repository Generic Pattern Interface for EntityFramework contexts, and my interface only contains 5 methods. -Query -Insert -Delete -Synchronize -Dispose I wrote the documentation in Summary Section, but when…
gds03
  • 1,349
  • 3
  • 18
  • 39
0
votes
1 answer

Crystal Report Sum total for each date in date range

this is my first attempt at Stack overflow, so hopefully you all can help me. I'd be happy to start contributing here, it's been such a useful tool in the past. Okay, so I am trying to write a report that charts the total past due hours of a…
Caleb Keller
  • 2,151
  • 17
  • 26
-1
votes
2 answers

Efficiently create summary table with min, max, mean, SE and sample size by category

I have a dataset that shows the walking speed of different age classes, measured in two different periods. Here is a reproducible…
Cam
  • 449
  • 2
  • 7
-1
votes
2 answers

Display the total number of each catagory in each column seperately -- SQL

Where is a database like gender ssc_b F Central F Central F Other M Central M Other I used the count and group by command but it…
vie.luo
  • 5
  • 2
-1
votes
1 answer

Indent subsubsubsection with Latex in the table of contents

I found the way to add a subsubsubsection to a LaTeX file using…
-1
votes
1 answer

SQL query to generate summary file base on change in price per item

I need help writing a query to generate a summary file of quantity purchase per item, and per cost from a purchase history file. To run the query the ORDER BY would be ITEM_NO, PO_DATE, AND COST. SAMPLE DATE - PURCHASE HISTORY OUTPUT FILE -…
user3537446
  • 43
  • 1
  • 6
-1
votes
1 answer

How to find the min, median and max (variable) for another variable

I'm quite new to using R so please bear with me. I'm using the Theoph dataset and need to find the min, median, max concentration for each subject. Both are listed as variables in the dataset. The subjects are listed like…
-1
votes
2 answers

How can I print the results of a summary and predict function by running a single code chunk using dplyr?

I am trying to fit several linear models using tidyverse in R. I am interested in printing out the results of the model fit using summary as well as a custom function designed to return statistical parameters not returned by summary like AIC values,…
user2352714
  • 314
  • 1
  • 15
-1
votes
1 answer

summarise() in R by specific observations

I am trying to gather summary statistics of a variable (diffdays) when the variable "disease" is equal to Malaria. My code for this is: summary(deathdata$diffdays, deathdata$disease == "Malaria") This doesn't seem to be working the way I'd like but…
user17582908
-1
votes
1 answer

summary of row of numbers in R

I just hope to learn how to make a simple statistical summary of the random numbers fra row 1 to 5 in R. (as shown in picture). And then assign these rows to a single variable. enter image description here Hope you can help!
-1
votes
1 answer

is there an R function by which you I can extract GAM summary output as a table to be presented in a document?

I have run a GAM and obtained a summary output. I want to extract the output of summary into a table, so that I can use it in a document.
-1
votes
1 answer

Is there a way to describe a field in typedoc?

The code is: /** * Class description */ export class SomeClass { /** * The field description */ message: string; } I'm checking it on the TSDoc playground and see, that there is the summary for class, but there is no summary for its…
mr_blond
  • 1,586
  • 2
  • 20
  • 52
-1
votes
1 answer

How to sum data based on weekdays in R?

I am new to R and have the following problem: I have data in two columns, one column represents the earnings on a certain day and the other column contains the weekdays (encoded modulo 7, so for example Saturday is 0, Monday is 1 etc.). An example…
3nondatur
  • 353
  • 2
  • 9
-1
votes
3 answers

Recode continuous variable_summary

enter image description here After recode from continuous variables into categorical. The summary for the new categorical variable doens't show how it summarize for categorical in levels we often see. Please help!
Will N
  • 1
  • 1
-1
votes
1 answer

Calculate summary statistics (mean, median etc.) by group

I am trying to calculate the median of specific groups using RStudio. I have inputted my data using a .csv file and my data set (MyData2) looks like the following: score group 1 7 DiseaseX 2 14 DiseaseX 3 6 DiseaseX 4 6…