Questions tagged [grouped-table]
78 questions
2
votes
0 answers
Material table : Sorting and displaying grouped data
I have a datasource that has data which is grouped. For e.g.
parent:
- name- string
- segments- arrayList of segment objects(each segment object has title and description
I'm trying to use a mat-table to display data in rows and columns as follows…

codeCoolie
- 51
- 1
- 6
2
votes
1 answer
titleForHeaderInSection in multiple lines (long text)
I want to display a header title for a grouped table, but it is only displaying in one line. I am not sure if this is possible, but a table cell can be displayed in multiple lines, but I do not know if the header also.
Thanks in advance!

baboso
- 159
- 3
- 14
2
votes
1 answer
R Grouped Data Frame: Function relates single value to the other values of the group
in a grouped data frame, i would like to apply a function that relates the one value in the actual a row to all other values of the group (and same column) except the one iin the present row. This will lead to a single value new variable. So if the…

Sans Soleil
- 43
- 4
2
votes
1 answer
Creating a grouped barplot in ggplot2 showing mean values (that I do not want to enter manually)
I'm trying to create a grouped bar plot showing the mean values for the data that I am inputting, and at the same time I want to make it easily reproducible so that I can swap in other data sets that are arranged similarly. I don't want to have to…

Philippe D'Onofrio
- 33
- 6
2
votes
1 answer
Assigning column values to grouped astropy table within a loop
I have a grouped astropy table and would like to loop over the groups and perform a clipped mean on each group separately.
The MWE below illustrates what I am trying to do. When the code runs, it does not throw out an error, rather the values for…

George K
- 53
- 3
2
votes
2 answers
UISearchBar with a grouped table view -- in Swift
Forgive me for not being able to figure this out on my own. I picked up iOS at Swift, and didn't learn much of objective-c.
I'm attempting to build in a uisearchbar that filters through a grouped table view composed of multiple arrays for it's…

Ryan Daulton
- 1,159
- 1
- 11
- 22
2
votes
2 answers
How do I detect when no UITableView table cell has been selected?
I have a start date/end date feature in my iPhone application. It is similar to that in the iPhone's native Calendar application, except there's no "All-day" option. That is, all the user can do is enter a start time/date and an end time/date.
The…

bruce1337
- 330
- 6
- 16
1
vote
1 answer
Is there a way to filter out an entire group from a tibble based on the rows within that group?
If I have a tibble where each row represents a component of some object and multiple components share and object, is there a way to analyze all of a given objects components and remove its corresponding rows if it doesn't match some condition?
For…

3luke33
- 37
- 3
1
vote
1 answer
How to create a venn diagram from a grouped data frame based on a single column?
Interestingly, all the libraries and resources I have found either use lists or multiple columns.
I would like to create a Venn diagram based on a grouped data frame (one column group and another column with items to be compared). What would be the…

Saren Tasciyan
- 454
- 4
- 15
1
vote
1 answer
How to mutate a new column with row means for select columns in grouped_tbl using dplyr r?
I have a grouped data frame from my big dataset with ~ 800 columns and ~ 2.5 million records. I'm trying to create a row means columns for only 5-10 columns each but, not sure why, I keep getting NA as means for all rows.
Here's what I tried:…

user1828605
- 1,723
- 1
- 24
- 63
1
vote
1 answer
Better Solution than For Loops when Comparing Values of Grouped Variables in R
I am fairly new to R, and have spent a long time looking for a better way to solve my issue below with no success. I was able to develop a solution using for loops that works; however, I am breaking the rules described on this GitHub tutorial…

DRC
- 43
- 1
- 6
1
vote
1 answer
Density curve for grouped observations
I have a data set where I have hourly observations of different species. For each hour, all the observations are pooled for each species and this was done for 24 hours. Following is a part of the dataframe:
Hr Sp1 Sp2 Sp3 Sp4 Sp5
1 8 25 1 7 …

S.Roy
- 11
- 1
1
vote
1 answer
Xamarin.forms | Grouped ListView | Remove Separator line below Group section title/cell | iOS
I am developing a grouped listview in xamarin.forms, I have removed separator lines between listview cell by setting SeparatorVisibility property to None. But white separator line below group section cell still exists. There is no property exposed…

Abid
- 41
- 6
1
vote
0 answers
iPhone sdk will not compile if i use UITableView Group background color
if i use grouped table view or just use this color, i get this compilation error:
The document "DetailedView.xib" could not be opened. The operation couldn’t be completed. -[NSCFArray insertObject:atIndex:]: attempt to insert nil.
if i use plain…

joe
- 21
- 1
1
vote
1 answer
Default appearance of static grouped UITableView with multiple sections
Did Apple change default appearance of grouped cells in table ?
I defined static grouped UITableView with multiple sections in Storyboard, expected the cells to appear as in this…

Tamir
- 625
- 1
- 12
- 27