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
-2
votes
1 answer

Summary table with some columns summing over a vector with variables in R

I have a table looking like this: df <- data.frame(week = c("one","one","two","two"), Day = c("day1", "day2","day1","day2"), daily_freq = c(100,110,90,90), city1 = c(20,30,20,30), …
-2
votes
1 answer

R:How to Fix Error Coding for A Bonferroni Correction

I am stuck on how to proceed with coding in RStudio for the Bonferroni Correction and the raw P values for the Pearson Correlation Matrix. I am a student and am new to R. I am also lost on how to get a table of the mean,SD, and n for the data. When…
N.J
  • 21
  • 2
  • 7
-2
votes
1 answer

How to make summary table by group in r?

I want make a summary table by group in R compare several parameter by factor For example data(iris) str(iris) i wanna make table Group Sepal.Length Sepal.Width Petal.Length Petal.Width Species1 mean mean mean …
-2
votes
1 answer

summary() function not printing correctly

This might be a very lame question, but I cannot really figure out what's going. Normally if I called this function: summary(VLTcog$per ~ VLTcog$Cognate) The output that I got was: VLTcog$per N=90 +--------------+--+--+----------+ | …
Csaba Szabo
  • 103
  • 1
  • 2
  • 10
-2
votes
2 answers

Summary statistics for variable, grouped by another variable

I am looking to find the summary statistics (mean and potentially standard deviation and other quantities) of a vector (column) in a data frame, but grouped. I hope to group the statistics by another categorical variable I know that one find summary…
pkpkPPkafa
  • 13
  • 2
  • 11
-2
votes
1 answer

PHP calculate total and split

How to calculate total and split on 4 without duplicate line with php? Example: 27 43 57 29 12 23 44 23 52 I want to divide summary by 4 without duplicating line. My point is to have 4 persons with closest results. Last few hours…
Simeon
  • 3
  • 2
-2
votes
1 answer

How to summarize rows based on multiple conditions using JavaScript?

I have the following table: +-----------+-------------+------------+--------------+--------+-----+ | Tariff No | Description | Net Weight | Gross Weight | Amount | COO | +-----------+-------------+------------+--------------+--------+-----+ | …
-2
votes
1 answer

SSRS Report Calculate Percentage in a summary table

I am currently working on a report that has a summary I created using a table. What I would like to see are the total number of incidents that my group has received by week, the number of incidents that had to be returned for more information and…
Shores
  • 1
  • 2
-2
votes
1 answer

Temperature variation plot in ggplot

I have hourly temperature data from an old experiment. I would like to summarize the dataset into a graph in ggplot showing the mean temperature of each experimental treatment, and the variation in temperatures within each treatment every hour. I…
I Del Toro
  • 913
  • 4
  • 15
  • 36
-3
votes
1 answer

PHP can include 'filename' but c#?

i want like PHP summary codes in one files and repeat other pages c# . for ex in PHP : include 'filename'; or require 'filename'; thanks!
-3
votes
1 answer

Python all lists of list of integers with exact summary

I need a help with an algorithm that takes a list of integers and value and finds all lists that add up to value. Fore example : fn ([1,1,2,2,3],4) -> [[1,1,2],[1,3],[2,2]] It must be an recursive soulution without added libraries. I have spent a…
LorNaP
  • 1
-3
votes
2 answers

Statistical Summary for categorical variables - academic paper

I am preparing a summary statistic for categorical variables in R to put in an academic paper. I am looking for output like this: Create summary table of categorical variables of different lengths However, I could not find a function for categorical…
Hamideh
  • 665
  • 2
  • 8
  • 20
-3
votes
1 answer

add confidence interval to summary output in R

I am running a linear regression model, using stepwise selection procedure and would like to get the confidence intervals in the summary table. How can i do this ? The purpose is to be able to use xtable to use the output in Latex step.model <-…
user1607
  • 531
  • 7
  • 28
-3
votes
4 answers

find partially similar string elements and summarize the data

I have a dataset and I want to summarize my data based on (let's say) the first three characters. in fact, concatenate rows which have the same 3 first letter in the column. For example: df title freq ACM100 3 ACM200 2 ACM300 2 MAT11 …
Cina
  • 9,759
  • 4
  • 20
  • 36
-3
votes
1 answer

C# Read Summary Function

there is a way to read the summary of function automatically from another CS file? I explain - I have the method void foo(int x); with Reflection I read the function name and his parameters but I also need to read his summary. The summary is XML…
1 2 3
85
86