Most voted "summary" questions
10 questions
Sort by count of
-
10
votes2
answers7145
viewsIs it good practice to use <Summary> for documentation?
This is the best way to document code in C#? /// <summary> /// Descrição /// </summary>
-
3
votes1
answer256
viewsIs it possible to leave the <Summary> in English?
It is possible to leave in Portuguese the tips of <summary> methods existing in . NET or third-party components in Visual Studio?
-
3
votes1
answer112
viewsRecommendations for comments on an interface and its contracts
Every day I come across this situation when I will insert comment for an interface and for a class. I wonder if I should use the same interface comments and their contracts, in class and their…
-
2
votes1
answer73
viewsSummary in classes and methods
How important the use of <summary> in methods and classes? How impactful this is at the level of development? Which is the good side and which is the bad side of its use?…
-
2
votes1
answer46
viewsHow do I build the Summary() function in R for a data frame?
I’m trying to do it this way dados<- c(10,18,19,15,21,34,45,64,20,21,39) resumo <- function(x) { min(x) max(x) n <- length(x) s <- sort(x) ifelse(n%%2==1, s[(n+1)/2], mean(s[n/2+0:1]))…
-
2
votes1
answer159
viewsUse of summarySE function for graph construction in ggplot2
Hello, I am looking for an aid to improve a script in R. I develop it with the help of the ggplot2 package. I have some errors and would like to get some feedback. In the study, I evaluated the…
-
2
votes1
answer250
viewsError generating graph with package ggplot2 in R
Hello, I am looking for an aid to improve a script in R. I develop it with the aid of the ggplot2 package. I intend to show a graph with media and standard error and the data set points. I used the…
-
1
votes1
answer1710
viewsGROUP BY and SUM at Crystal Report
I need to do something relatively simple with Crystal Report but I’m not getting it. I have a report like this: OP | CLIENTE | PREÇO 1 João 10 1 João 20 1 João 30 2 Marcelo 15 3 Rodrigo 35 3 Rodrigo…
-
1
votes1
answer47
viewsSeparate values from a list of summaries in R
From the previous question How to run a looping in R and store the results of a summary in a vector have as response a list with 20 summaries with values calculated from a specified template. One of…
-
0
votes2
answers41
viewsR, How to calculate the mean of a variable x for each group of other variables
I wanted to make a table more or less like this: A column with the nominal variables and their groups and another column with the average of a variable x for each group of each variable. With dplyr…