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

How to combine multiple summary tables at once

Consider the following data frame: set.seed(123) dat <- data.frame(Region = rep(c("a","b"), each=100), State =rep(c("NY","MA","FL","GA"), each = 50), Loc = rep(letters[1:20], each = 5), ID =…
Ryan
  • 1,048
  • 7
  • 14
-1
votes
3 answers

Problem extracting model covariates for model summary table

I'm a graduate student using a linear regression (count) model to understand drivers of fish movement into and out of tidal wetlands. I am currently trying to generate a publication-worthy model summary table in r. I've been using the sel.table…
Dave A
  • 1
  • 1
-1
votes
1 answer

How get results of test in a Dynamic Test in Junit5?

my function is similar to: @TestFactory public Stream dynamicTest() throws Exception { String geocodingAnasJsonTest = properties.getProperty("smart-road.simulator.json.geocoding-it.anas.testSuite.test"); String endpoint =…
Catanzaro
  • 1,312
  • 2
  • 13
  • 24
-1
votes
1 answer

Excel: Count strings occurrences in range of cells

I am quite new to Excel formulas and I am stuck on something. Let's say I have this table: What formula can sum all strings to number of occurrences in each column, something like this: The result does not have to be in this exact format, but…
I.Klein
  • 41
  • 5
-1
votes
2 answers

R question: how to save summary results into a dataset

I'm a SAS programmer trying to learn R. If SAS, I would do this to save results of descriptive stats into a dataset: proc means data=abc; var var1 var2 var3; ods output summary=result1; run; I think in R, it would be this: …
Kaz
  • 37
  • 6
-1
votes
1 answer

How to Convert daily dataset to monthly dataset with 95% quantile values in the monthly format?

I have a timeseries of daily dataset for 10 years. I want to convert it to monthly dataset for 10 years, however the monthly values will be quantiles rather than the average of that month. How to perform this using R?
-1
votes
1 answer

Hours sum of columns

I am using this code to save hours but with the use ShowFooter property, can I enter the spaces under the columns in total how to have a use code and summaryitem format what should it be? connection.Open(); SqlCommand cmd = new SqlCommand("INSERT…
-1
votes
3 answers

R & dplyr: Assigning group-level characteristics to selected group members

I have a large data set divided into many small groups by a grouping variable = grp; all members of a group are contiguous in the order of the larger data set. The members of a group each have an id code (= id) and are numbered sequentially from 1.…
andrewH
  • 2,281
  • 2
  • 22
  • 32
-1
votes
1 answer

Use of If with Summary Statistics in Stata

I have a panel data. I want to calculate the summary statistics for the data before the year 2007 and after year 2007. I tried to use the following command but it did not work. summarize variables, if year =<2007
Ahmed Arif
  • 189
  • 1
  • 2
  • 10
-1
votes
2 answers

How to use summarize and group by to create a summary table in r?

So I have the following data set (this is a small sample/example of what it looks like, with the original being 7k rows and 30 columns over 7 decades): Year,Location,Population Total, Median Age, Household Total 2000, Adak, 220, 45, 67 2000,…
jules
  • 3
  • 1
  • 3
-1
votes
1 answer

Run Subset Data Before Performing Math Operation Based on Row Value

I am trying to figure out an optimized way to perform math operations based on row identifier. Sample data set as follows: A B C D E F G H I J K 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 …
Chetan Arvind Patil
  • 854
  • 1
  • 11
  • 31
-1
votes
3 answers

Summary statictic table in R

I have to create a summary statistics table in R. The table has 4 columns. There is variable in data, remittance==0 and remittance==1 for which mean and SD of the characteristics of other variables (which will be in rows of the table) are to…
-1
votes
2 answers

Finding summary & basic statistics from data in Vertica

Recently I am exploring HPE Vertica a bit. Is it possible to find summary statistics (mean,sd,quartiles,max,min,counts etc) from a data table loaded in vertica? These two…
Hindol Ganguly
  • 363
  • 1
  • 4
  • 16
-1
votes
1 answer

SAS make summary statistic not available in proc mean

I have a table with very many columns but for the in order to explain my problem I will use this simple table. data test; input a b c; datalines; 0 0 0 1 1 1 . 4 2 ; run; I need to calculate the common summary…
fossekall
  • 521
  • 1
  • 10
  • 27
-1
votes
2 answers

Summary Statistics in R

How do I generate some summary statistics (mean, sd, range, sample size) for multiple categories (different measurements across row 1) from different species (in column 1) simultaneously and have them printed using "write.csv() to one data file. I…
L. Grismer
  • 93
  • 1
  • 1
  • 4