Questions tagged [grouped-table]
78 questions
0
votes
1 answer
Grouped Barplot of Summarized Means with Ggplot2
I feel like I'm missing something very basic but any advice is appreciated.
I have a large dataset with 19 variables, both categorical and numerical. I want to produce a plot with three of the variables (since they share a unit) averaged and…

michellemoyah
- 13
- 3
0
votes
1 answer
multiple ICC grouped bar plot R
I'm trying to make a grouped barplot for a multiple intra-class coefficient of the same quantitative variables, estimated before and after standardisation on different factors("constructeur","coup"..."pitch").
Here's the 5 first rows of my…

Miricy
- 35
- 6
0
votes
1 answer
Rates using Grouped froecasting with fable
As I am pretty new to fable for R, I was wondering if it is also possible to forecast a rate instead of counts within a grouped time series.
Here is a short example of the tsibble I created:
head(data)
# A tsibble: 6 x 5 [1Y]
# Key: …

DerV
- 13
- 4
0
votes
1 answer
Corner radius not properly fit in dynamic grouped tableView swift
I have created a Grouped TableView dynamically based on data. Based on data tableView cell generated automatic height so every cell has different rowHeight. I have set it accordingly by using self.tableView.rowHeight = 50
But Issue is I am using…
user12435629
0
votes
2 answers
Summing rows with particular value in grouped data in R
I contain a dataset 'area'
House_No. Info_On_Area
1a Names of neighbouringhouse in 100m 1b 1c 1d 1e
1a Area of neighbouringhouse in 100m 500 1000 1500 300
1a Names of neighbouringhouse in 300m 1b 1c 1d 1e…

Keerthi Krutha
- 25
- 8
0
votes
2 answers
Titanium: Grouped tableview background on iPad
Is there a way to work around the grouped tableview background problem on the iPad?
I found some questions with the answer to check the following link:
Ticket
The problem is that this link doesn't work for me. It says it's not a public project. So…

Tjekkles
- 5,352
- 8
- 36
- 53
0
votes
1 answer
Performing operations on groups of rows in excel
I have the following set of data (this is a dummy, the actual data is a whole bulk file) in excel:
A a1 2 5
A a2 1 4
A a3 0 5
A a4 2 3
A s5 2 4
B b1 5 5
B b1 4 3
B b3 4 1
C c1 2 2
C c2 3 5
C c3 1 4
C c4 0 2
Assuming that the columns are from A to D…

Ojaswita
- 83
- 10
0
votes
3 answers
Add images to table cells in sections
i want to display an image besides the text in table cell. i have 2 sections, General and Assignments. Now i only want to display image beside Assignments and no image besides General section. the below code displays images for Assignments section…

appuser
- 269
- 1
- 3
- 10
0
votes
0 answers
insert a group of rows in Excel
So Im working on an Excel sheet for a colleague of mine, and what I would like to know is.
Is there any way where you can insert a copy of the grouped rows 3 to 9 below it? Normally i would make a VBA to do it, however the person im making this for…

Mikkel Astrup
- 405
- 6
- 18
0
votes
0 answers
matplotlib to create multiple groups of stacked histogram
I would like to create similar graph with this one (groups of stacked bar chart):
import numpy as np
import matplotlib.pyplot as plt
N = 5
menMeans = (20, 35, 30, 35, 27)
womenMeans = (25, 32, 34, 20, 25)
menStd = (2, 3, 4, 1, 2)
womenStd = (3, 5,…

AugLe
- 113
- 5
0
votes
2 answers
UITableView Data Based on Previous View
I'm currently working on the settings section of my iPhone app, and I just came to realization that if each page in the settings had it's own view and .h + .m, that would be A LOT of unnecessary code and views. So I came up with the conclusion that…

Andy B
- 515
- 2
- 5
- 15
0
votes
2 answers
When empty field comes, removed the row in the Grouped Table view in iPhone?
I have displayed the datas in grouped table view. The data's are displayed in the table view from XML parsing. I have 2 section of the table view, the section one has three rows and section two has two rows.
section 1 -> 3 Rows
section 2 - >…

Pugalmuni
- 9,350
- 8
- 56
- 97
0
votes
1 answer
Grouped data in dplyr
In Foundations of Linear and Generalized Linear Models by Alan Agresti, the author points out that there is a difference between grouped and ungrouped data for binary date modeling. The format does not matter for inference, but it does matter for…

Alex
- 2,603
- 4
- 40
- 73
0
votes
0 answers
GGPLOT grouped bar plot with facets: multiple aligned labels per bar?
(EDIT: The issues raised in this post are solved below)
I am trying to get my bar plot to look a certain way. I hope you can follow me without really explaining what the purpose of this plot is or the context of the data, so I'll dive right in.
I'm…

s.erhardt
- 77
- 1
- 3
- 9
0
votes
1 answer
Dynamically add row in TableView grouped style
I have TableView grouped style with 3 section, I need dynamically add row to this section. When I add:
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1
}
It's okay, but when I change number…

user3544668
- 33
- 6