r data table aggregate multiple columns

Each element returned is the result of the application of function, FUN. How to Aggregate multiple columns in Data.table in R ? Looking to protect enchantment in Mono Black. See e.g. require(["mojo/signup-forms/Loader"], function(L) { L.start({"baseUrl":"mc.us18.list-manage.com","uuid":"e21bd5d10aa2be474db535a7b","lid":"841e4c86f0"}) }), Your email address will not be published. How were Acorn Archimedes used outside education? Here we are going to get the summary of one variable by grouping it with one or more variables. aggregate(cbind(sum_column1,sum_column2,.,sum_column n) ~ group_column1+group_column2+group_columnn, data, FUN=sum). GROUP BY id. Views expressed here are personal and not supported by university or company. Browse other questions tagged, Where developers & technologists share private knowledge with coworkers, Reach developers & technologists worldwide, what if you want several aggregation functions for different collumns? I hate spam & you may opt out anytime: Privacy Policy. In Root: the RPG how long should a scenario session last? Thats right: data.table creates side effect by using copy-by-reference rather than copy-by-value as (almost) everything else in R. It is arguable whether this is alien to the nature of a (more or less) functional language like R but one thing is sure: it is extremely efficient, especially when the variable hardly fits the memory to start with. As shown in Table 3, the previous R code has constructed a data.table object where for each category in column group the group mean of column value is stored in the new column group_mean. If you want to sum up the columns, then it is just a matter of adding up the rows and deleting the ones that you are not using. Creating a Data Frame from Vectors in R Programming, Filter data by multiple conditions in R using Dplyr. thanks, how to summarize a data.table across multiple columns, You can use a simple lapply statement with .SD, If you only want to summarize over certain columns, you can add the .SDcols argument. Get regular updates on the latest tutorials, offers & news at Statistics Globe. If you are transformationally . How to make chocolate safe for Keidran? Sums of Rows & Columns in Data Frame or Matrix, Sum Across Multiple Rows & Columns Using dplyr Package, Use Previous Row of data.table in R (2 Examples), Display Large Numbers Separated with Comma in R (2 Examples). Is there a way to also automatically make the column names "sum a" , "sum b", " sum c" in the lapply? data # Print data frame. Find centralized, trusted content and collaborate around the technologies you use most. One such weakness is that by design data.table aggregation requires the variables to be coming from the same data.table, so we had to cbind the two variables. x2 = c(3, 1, 7, 4, 4), In this article, we will discuss how to aggregate multiple columns in R Programming Language. Personally, I think that makes the code less readable, but it is just a style preference. You can find the video below: Furthermore, you may want to have a look at some of the related tutorials that I have published on this website: In this article you have learned how to group data tables in R programming. Creating a Data Frame from Vectors in R Programming, Filter data by multiple conditions in R using Dplyr. Then I recommend having a look at the following video on my YouTube channel. There used to be a speed penalty of using. z1 and z2 then during adding data we multiply the x1 and x2 in the z1 column, and we multiply the y1 and y2 in the z2 column and at last, we print the table. Change Color of Bars in Barchart using ggplot2 in R, Converting a List to Vector in R Language - unlist() Function, Remove rows with NA in one column of R DataFrame, Calculate Time Difference between Dates in R Programming - difftime() Function, Convert String from Uppercase to Lowercase in R programming - tolower() method. from t cross apply. Also, the aggregation in data.table returns only the first variable if the function invoked returns more than variable, hence the equivalence of the two syntaxes showed above. Removing unreal/gift co-authors previously added because of academic bullying, Books in which disembodied brains in blue fluid try to enslave humanity. How to filter R dataframe by multiple conditions? In this article youll learn how to compute the sum across two or more columns of a data frame in the R programming language. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions. Does the LM317 voltage regulator have a minimum current output of 1.5 A? Syntax: aggregate (sum_var ~ group_var, data = df, FUN = sum) Parameters : sum_var - The columns to compute sums for group_var - The columns to group data by data - The data frame to take Table 1 shows that our example data consists of twelve rows and four columns. In case, the grouped variable are a combination of columns, the cbind() method is used to combine columns to be retrieved. To do this we will first install the data.table library and then load that library. 5 Aggregate by multiple columns in R The aggregate () function in R The syntax of the R aggregate function will depend on the input data. That is, summarizing its information by the entries of column group. I have the following sample data.table: dtb <- data.table (a=sample (1:100,100), b=sample (1:100,100), id=rep (1:10,10)) I would like to aggregate all columns (a and b, though they should be kept separate) by id using colSums, for example. Required fields are marked *. We can use the aggregate() function in R to produce summary statistics for one or more variables in a data frame. And what do you mean to just select id's once instead of once per variable? sum_var The columns to compute sums for. ): Another exciting possibility with data.table is creating a new column in a data.table derived from existing columns with or without aggregation. R aggregate all columns of data.table . We can use cbind() for combining one or more variables and the + operator for grouping multiple variables. The variables gr1 and gr2 are our grouping columns. Find centralized, trusted content and collaborate around the technologies you use most. Connect and share knowledge within a single location that is structured and easy to search. The result set would then only include entirely distinct rows. aggregate(sum_var ~ group_var, data = df, FUN = sum). Get started with our course today. The by attribute is used to divide the data based on the specific column names, provided inside the list() method. Aggregation means combining two or more data. this is actually what i was looking for and is mentioned in the FAQ: I guess in this case is it fastest to bring your data first into the long format and do your aggregation next (see Matthew's comments in this SO post): Thanks for contributing an answer to Stack Overflow! rev2023.1.18.43176. aggregate(sum_column ~ group_column1+group_column2+group_columnn, data, FUN=sum). (Basically Dog-people). Required fields are marked *. Copyright Statistics Globe Legal Notice & Privacy Policy, Example 1: Calculate Sum by Group in data.table, Example 2: Calculate Mean by Group in data.table. data # Print data.table. One such weakness is that by design data.table aggregation requires the variables to be coming from the same data.table, so we had to cbind the two variables. This function uses the following basic syntax: aggregate(sum_var ~ group_var, data = df, FUN = mean). Statology Study is the ultimate online statistics study guide that helps you study and practice all of the core concepts taught in any elementary statistics course and makes your life so much easier as a student. In this example, We are going to use the sum function to get some of marks by grouping with subjects. GROUP BY col. using non aggregate functions you can simplify the query a little bit, but the query would be a little more difficult to read. How do you delete a column by name in data.table? Syntax: ':=' (data type, constructors) Here ':' represents the fixed values and '=' represents the assignment of values. Let's solve a quick exercise based on pivot table. Get regular updates on the latest tutorials, offers & news at Statistics Globe. Change Color of Bars in Barchart using ggplot2 in R, Converting a List to Vector in R Language - unlist() Function, Remove rows with NA in one column of R DataFrame, Calculate Time Difference between Dates in R Programming - difftime() Function, Convert String from Uppercase to Lowercase in R programming - tolower() method. What is the purpose of setting a key in data.table? Therefore, with the help of ":=" we will add 2 columns in the above table. Does the LM317 voltage regulator have a minimum current output of 1.5 A? In this example, Ill explain how to get the sum across two columns of our data frame. The lapply() method is used to return an object of the same length as that of the input list. Why lexigraphic sorting implemented in apex in a different way than in other languages? rev2023.1.18.43176. General Approach: Collapsing Multiple Rows in R. The basic process for collapsing rows from a dataframe in R programming involves first determining the type of collapse that you want. Also, you might read the other articles on this website. As kindly noted by Jan Gorecki in the comments (thanks, Jan! What is the correct way to do this? Site design / logo 2023 Stack Exchange Inc; user contributions licensed under CC BY-SA. This post repeats the same examples using data.table instead, the most efficient implementation of the aggregation logic in R, plus some additional use cases showing the power of the data.table package. How many grandchildren does Joe Biden have? Just like in case of aggregate, you can use anonymous functions to aggregate in data.table as well. Aggregate all columns of data.table, without having to reference them by name. inefficient i mean how many searches through the dataframe the code has to do. David Kun Then I recommend having a look at the following video of my YouTube channel. First of all, no additional function was invoke. Why is water leaking from this hole under the sink? HAVING COUNT (*)=1. Removing unreal/gift co-authors previously added because of academic bullying, How to pass duration to lilypond function. Your email address will not be published. In this example, We are going to get sum of marks and id by grouping with subjects. Compute Summary Statistics of Subsets in R Programming - aggregate() function, Aggregate Daily Data to Month and Year Intervals in R DataFrame, How to Set Column Names within the aggregate Function in R, Dplyr - Groupby on multiple columns using variable names in R. How to select multiple DataFrame columns by name in R ? Asking for help, clarification, or responding to other answers. After executing the previous R code, the result is shown in the RStudio console. x4 = c(7, 4, 6, 4, 9)) As shown in Table 2, we have created a data.table object using the previous syntax. How Could One Calculate the Crit Chance in 13th Age for a Monk with Ki in Anydice? It could also be useful when you are sure that all non aggregated columns share the same value: SELECT id, name, surname. A Computer Science portal for geeks. Is every feature of the universe logically necessary? To learn more, see our tips on writing great answers. All the variables are numeric. The first step is to define some example data: data <- data.frame(x1 = 1:5, # Create data frame Get regular updates on the latest tutorials, offers & news at Statistics Globe. Subscribe to the Statistics Globe Newsletter. Also note that you dont have to know up front that you want to use data.table: the as.data.table command allows you to cast a data.frame into a data.table. We create a table with the help of a data.table and store that table in a variable. Has natural gas "reduced carbon emissions from power generation by 38%" in Ohio? Here . is used to put the data in the new columns and by is used to add those columns to the data table. Method 1: Using := A column can be added to an existing data table using := operator. How to Replace specific values in column in R DataFrame ? Get regular updates on the latest tutorials, offers & news at Statistics Globe. I would like to aggregate all columns (a and b, though they should be kept separate) by id using colSums, for example. Summary: In this article, I have explained how to calculate the sum of data frame variables in the R programming language. To subscribe to this RSS feed, copy and paste this URL into your RSS reader. While adding the data with the help of colon-equal symbol we define the name of the column i.e. Correlation vs. Regression: Whats the Difference? . The FUN to be applied is equivalent to sum, where each columns summation over particular categorical group is returned. This is a very important aspect of the data.table syntax. Change Color of Bars in Barchart using ggplot2 in R, Converting a List to Vector in R Language - unlist() Function, Remove rows with NA in one column of R DataFrame, Calculate Time Difference between Dates in R Programming - difftime() Function, Convert String from Uppercase to Lowercase in R programming - tolower() method. Here, we are going to get the summary of one variable by grouping it with one variable. See ?.SD, ?data.table and its .SDcols argument, and the vignette Using .SD for Data Analysis. An alternate way and a better practice is to pass in the actual column name. You should mark yours as the correct answer. How to filter R dataframe by multiple conditions? This tutorial provides several examples of how to use this function to aggregate one or more columns at once in R, using the following data frame as an example: The following code shows how to find the mean points scored, grouped by team: The following code shows how to find the mean points scored, grouped by team and conference: The following code shows how to find the mean points and the mean rebounds, grouped by team: The following code shows how to find the mean points and the mean rebounds, grouped by team and conference: How to Calculate the Mean of Multiple Columns in R The article will contain the following content blocks: To be able to use the functions of the data.table package, we first have to install and load data.table: install.packages("data.table") # Install data.table package You can unpivot and aggregate: select firstname, lastname, string_agg (pt, ', ') as points. All code snippets below require the data.table package to be installed and loaded: Here is the example for the number of appearances of the unique values in the data: You can notice a lot of differences here. A column can be added to an existing data table using := operator. data.table vs dplyr: can one do something well the other can't or does poorly? We will use cbind() function known as column binding to get a summary of multiple variables. This post repeats the same examples using data.table instead, the most efficient implementation of the aggregation logic in R, plus some additional use cases showing the power of the data.table package. FUN refers to functions like sum, mean, min, max, etc. RDBL manipulate data in-database with R code only, Aggregate A Powerful Tool for Data Frame in R. Introduction to Statistics is our premier online video course that teaches you all of the topics covered in introductory statistics. Assign multiple columns using := in data.table, by group, How to reorder data.table columns (without copying), Select multiple columns in data.table by their numeric indices. group_column is the column to be grouped. ): You can also use the [] operator in the classic data.frame way by passing on only two input variables: UPDATE 02/12/2015 data_sum <- data[ , . In the code, we declare that the group sums should be stored in a column called group_sum. By accepting you will be accessing content from YouTube, a service provided by an external third party. The .SD attribute is used to calculate summary statistics for a larger list of variables. How to add a column based on other columns in R DataFrame ? Stack Overflow Public questions & answers; Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers; Talent Build your employer brand ; Advertising Reach developers & technologists worldwide; About the company Didn't you want the sum for every variable and id combination? As you can see based on Table 1, our example data is a data frame consisting of five rows and four columns. After installing the required packages out next step is to create the table. How Intuit improves security, latency, and development velocity with a Site Maintenance - Friday, January 20, 2023 02:00 - 05:00 UTC (Thursday, Jan Were bringing advertisements for technology courses to Stack Overflow, R: How to aggregate some columns while keeping other columns, Sort (order) data frame rows by multiple columns, Simultaneously merge multiple data.frames in a list, Selecting multiple columns in a Pandas dataframe. value = 1:12) no? Finally, notice how data.table creates a summary of the head and the tail of the variable if its too long to show. They were asked to answer some questions from the overcomittment scale. By clicking Accept all cookies, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy. The aggregate () function in R is used to produce summary statistics for one or more variables in a data frame or a data.table respectively. By using our site, you I'm trying to use data.table to speed up processing of a large data.frame (300k x 60) made of several smaller merged data.frames. In the video, I show the content of this tutorial: Besides the video, you may want to have a look at the related articles on Statistics Globe. A-143, 9th Floor, Sovereign Corporate Tower, We use cookies to ensure you have the best browsing experience on our website. We have to use the + operator to group multiple columns. A-143, 9th Floor, Sovereign Corporate Tower, We use cookies to ensure you have the best browsing experience on our website. x3 = 5:9, Therefore, with the help of := we will add 2 columns in the above table. In my recent post I have written about the aggregate function in base R and gave some examples on its use. data_sum # Print sum by group. data_grouped <- data # Duplicate data table data.table: Group by, then aggregate with custom function returning several new columns. I always think that I should have everything in long format, but quite often, as in this case, doing the computations is more efficient. Table 2 illustrates the output of the previous R code A data table with an additional column showing the group sums of each combination of our two grouping variables. To find the sum of rows of a column based on multiple columns in R's data.table object, we can follow the below steps. Stopping electric arcs between layers in PCB - big PCB burn, Background checks for UK/US government research jobs, and mental health difficulties. Would Marx consider salary workers to be members of the proleteriat? The column values can be summed over such that the columns contains summation of frequency counts of variables. Sum multiple columns into one for each paricipant of survey in R. So, I have a data set from a survey with 291 participants. Your email address will not be published. I hate spam & you may opt out anytime: Privacy Policy. Can I change which outlet on a circuit has the GFCI reset switch? Furthermore, dont forget to subscribe to my email newsletter for regular updates on the newest tutorials. This means that you can use all (or at least most of) the data.frame functionality as well. require(["mojo/signup-forms/Loader"], function(L) { L.start({"baseUrl":"mc.us18.list-manage.com","uuid":"e21bd5d10aa2be474db535a7b","lid":"841e4c86f0"}) }), Your email address will not be published. I will show an example of that later. The arguments and its description for each method are summarized in the following block: Syntax (group_sum = sum(value)), by = group] # Aggregate data How to change Row Names of DataFrame in R ? This page was created in collaboration with Anna-Lena Wlwer. Here, we are going to get the summary of one or more variables by grouping them with one or more variables. The result of the addition of the variables x1, x2, and x4 is shown in the RStudio console. gr2 = letters[1:2], When was the term directory replaced by folder? df[ , new-col-name:=sum(reqd-col-name), by = list(grouping columns)]. This post focuses on the aggregation aspect of the data.table and only touches upon all other uses of this versatile tool. Finally note how much simpler the anonymous function construction works: rather than defining the function itself, we can simply pass the relevant variable. unless i am not understanding the basis of how R is doing things, with a vector operation, the id has to be looked up once and then the sum across columns is done as a vector operation. aggregating multiple columns in data.table, Microsoft Azure joins Collectives on Stack Overflow. Given below are various examples to support this. +1 Btw, this syntax has been optimized in the latest v1.8.2. Your email address will not be published. Get regular updates on the latest tutorials, offers & news at Statistics Globe. Find centralized, trusted content and collaborate around the technologies you use most. On this website, I provide statistics tutorials as well as code in Python and R programming. How to filter R dataframe by multiple conditions? Group data.table by Multiple Columns in R (Example) This tutorial illustrates how to group a data table based on multiple variables in R programming. data_grouped # Print updated data table. In this article you'll learn how to compute the sum across two or more columns of a data frame in the R programming language. Not the answer you're looking for? #find mean points scored, grouped by team, #find mean points scored, grouped by team and conference, How to Add a Regression Line to a Scatterplot in Excel. Subscribe to the Statistics Globe Newsletter. is versatile in allowing multiple columns to be passed to the value.var and allows multiple functions to fun.aggregate as well. By using our site, you This function uses the following basic syntax: aggregate (sum_var ~ group_var, data = df, FUN = mean) where: sum_var: The variable to summarize group_var: The variable to group by library(data.table) dt [ ,list (sum=sum(col_to_aggregate)), by=col_to_group_by] Mean how many searches through the DataFrame the code, the result is in! Kindly noted by Jan Gorecki in the new columns frame from Vectors in R using Dplyr custom! Programming/Company interview Questions example data is a very important aspect of the list... Age for a Monk with Ki in Anydice in Anydice are going to get summary! The list ( grouping columns ) ] be summed over such that the columns contains of... Is shown in the comments ( thanks, Jan data.table library and load. Accepting you will be accessing content from YouTube, a service provided by external!, Background checks for UK/US government research jobs, and x4 is shown in the above table n. Latest tutorials, offers & news at Statistics Globe once instead of once variable. Provided inside the list ( ) r data table aggregate multiple columns in R using Dplyr R DataFrame, x2, x4! Grouping it with one variable by grouping it with one or more variables the summary of variable... + operator to group multiple columns in R DataFrame different way than in other languages,., n... 2 r data table aggregate multiple columns in data.table a circuit has the GFCI reset switch about the aggregate ( sum_column ~ group_column1+group_column2+group_columnn data. On writing great answers to Replace specific values in column in R?! Base R and gave some examples on its use R to produce summary for...,., sum_column n ) ~ group_column1+group_column2+group_columnn, data, FUN=sum.. A Monk with Ki in Anydice Books in which disembodied brains in blue fluid try to enslave humanity we. In PCB - big PCB burn, Background checks for UK/US government research jobs, and mental health difficulties added! Where each columns summation over particular categorical group is returned in Ohio logo 2023 Stack Exchange Inc user! Previously added because of academic bullying, Books in which disembodied brains blue. Rstudio console x4 is shown in the latest tutorials, offers & news Statistics... Declare that the columns contains summation of frequency counts of variables voltage regulator have a current... We declare that the columns contains summation of frequency counts of variables responding... Put the data table data.table: group by, then aggregate with custom returning! By grouping with subjects the aggregate function in base R and gave some examples on use. Expressed here are personal and not supported by university or company the comments ( thanks, Jan of marks id! Replaced by folder around the technologies you use most x1, x2, and mental health difficulties in other?! Gfci reset switch R to produce summary Statistics for one or more variables and the tail of the values. Provided inside the list ( grouping columns ) ] 9th Floor, Sovereign Corporate Tower, we are going get... To produce summary Statistics for a Monk with Ki in Anydice by Jan Gorecki in the above.... Data in the code, we use cookies to ensure you have the best browsing experience our... Name in data.table step is to create the table I provide Statistics tutorials as well by = list grouping. Will add 2 columns in R using Dplyr create the table of multiple variables with one or variables., trusted content and collaborate around the technologies you use most, you might read the other ca or. Define the name of the addition of the data.table syntax thanks,!! Aggregate ( sum_var ~ group_var, data = df, FUN = sum ) Privacy Policy it one. The data in the code has to do this we will use cbind ( ) method, in! I hate spam & you may opt out anytime: Privacy Policy grouping it with one more. Group is returned grouping it with one or more variables and the vignette using.SD data! Furthermore, dont forget to subscribe to this RSS feed, copy and paste URL... Third party columns contains summation of frequency counts of variables ) the data.frame functionality as well equivalent to sum where! Have explained how to pass duration to lilypond function versatile tool grouping them with one or more variables and tail! 2 columns in the comments ( thanks, Jan most of ) the data.frame functionality as well compute sum. This article youll learn how to aggregate in data.table as you can see based on table! Were asked to answer some Questions from the overcomittment scale Stack Overflow several new columns pivot....Sd,? data.table and store that table in a data frame consisting of five rows and columns... To compute the sum function to get the summary of one variable, without having to them! By an external third party of my YouTube channel df, FUN newest tutorials the programming! Actual column name define the name of the head and the + operator to group multiple columns in data.table has. Root: the RPG how long should a scenario session last by Jan Gorecki in the above table scenario! With the help of colon-equal symbol we define the name of the proleteriat that of the application function. Change which outlet on a circuit has the GFCI reset switch minimum current output of 1.5?! And programming articles, quizzes and practice/competitive programming/company interview Questions under the sink the head and the vignette.SD. Use all ( or at least most of ) the data.frame functionality as well to compute the sum marks... R to produce summary Statistics for one r data table aggregate multiple columns more variables uses the following video on my channel! Of: = operator to create the table by an external third r data table aggregate multiple columns quick exercise based on 1! Having a look at the following video on my YouTube channel video of my YouTube channel return an object the!, new-col-name: =sum ( reqd-col-name ), by = list ( ) for one... Service provided by an external third party n't or does poorly to search with Ki Anydice... Mean to just select id 's once instead of once per variable on writing answers! That library try to enslave humanity of data frame variables in a data frame consisting of rows. For UK/US government research jobs, and the + operator for grouping multiple.! Add 2 columns in data.table as well as code in Python and R programming, data! Purpose of setting a key in data.table get a summary of one variable by grouping with. An alternate way and a better practice is to pass in the above table first install the data.table its. Return an object of the proleteriat the variables gr1 and gr2 are our grouping columns ) ] see on. Known as column binding to get sum of data frame you may opt out anytime: Privacy.. Shown in the R programming language with Ki in Anydice be members of the head the... Only include entirely distinct rows a single location that is, summarizing its information by the entries column! Of academic bullying, Books in which disembodied brains in blue fluid try to enslave humanity ).! By accepting you will be accessing content from YouTube, a service provided by an external third party but is... One or more r data table aggregate multiple columns and the + operator for grouping multiple variables for UK/US government research,! Gave some examples on its use them with one or more variables function returning new. Gr2 = letters [ 1:2 ], When was the term directory replaced by folder have to use +... Or company and only touches upon all other uses of this versatile tool on our.. See based on other columns in the code has to do circuit has the GFCI reset switch frame from in. If its too long to show the help of: = a based... Bullying, how to compute the sum across two or more columns a... Noted by Jan Gorecki in the actual column name in Python and R programming of. To produce summary Statistics for one or more variables in a variable data.table, Microsoft Azure joins on!, but it is just a style preference functions to fun.aggregate as well clarification, or responding to other.. 1: using: = a column can be summed over such that the sums! Also, you can use all ( or at least most of ) the functionality... Get some of marks by grouping it with one variable frame variables in a.. Custom function returning several new columns with or without aggregation example, we use cookies to you! Help of & quot ;: = operator to enslave humanity mean how many searches through the DataFrame the has. Each columns summation over particular categorical group is returned = we will first install data.table... Article, I provide Statistics tutorials as well as code in Python and R programming...., notice how data.table creates a summary of the head and the + operator to group multiple to...,? data.table and store that table in a data frame to learn,. '' in Ohio one or more variables and the vignette using.SD for data Analysis of,. In base R and gave some examples on its use 2023 Stack Exchange ;. Different way than in other languages a very important aspect of the data.table syntax the RPG how should...: in this article, I have explained how to calculate the sum across two more. Existing columns with or without aggregation Azure joins Collectives on Stack Overflow or to! Fun refers to functions like sum, mean, min, max, etc ( or at least of! And the + operator to group multiple columns in the latest tutorials, offers & news at Statistics Globe get. / logo 2023 Stack Exchange Inc ; user contributions licensed under CC BY-SA does poorly will use (! Grouping it with one or more variables in a data.table and its.SDcols argument, and x4 shown. Its information by the entries of column group hate spam & you opt.

Ex Esposo De Adela Micha Sergio, Articles R

r data table aggregate multiple columns