Multiple membership describes a kind of multilevel model where a unit of a lower level may belong to more than one unit of a higher level. For example, secondary school students may be nested in multiple classrooms through the school day.
Questions tagged [multiple-membership]
13 questions
7
votes
1 answer
Multiple Membership vs Crossed Random Effects
I see that there is a multiple-membership tag, but I can't find a good explanation of what a multiple membership model is, or how to go about fitting one.
In my limited understanding, it seem very similar to a cross-classified model. That is, units…

Joe King
- 3,024
- 6
- 32
- 58
5
votes
0 answers
How to run a multiple membership hierarchical model in Stata?
I have a dataset of educators and the courses that they designed. My original thought was to do a multilevel model where courses are nested within educators, and the outcome is whether the course ever was offered publicly to students. I was fitting…

ahnjune
- 51
- 2
3
votes
0 answers
Dealing with multiple cases per subject
I want to analyze a table with surgery operations data. For some patients, about 10%, multiple operations have been made, so there may be multiple rows for a patient in the table. My goal is to compare certain two types of operations. A patient may…

Viktor
- 853
- 1
- 8
- 22
2
votes
0 answers
How to fit a multiple membership model when the factor is nested?
The accepted answer to this question explains how to fit a mixed effects model where there is multiple membership. I would like to know how to proceed when the multiple membership factor itself is nested in another random factor.

Joe King
- 3,024
- 6
- 32
- 58
2
votes
0 answers
Multiple membership model random effects specification
We are looking at tournament performance of chess players over time and have a question about the random effects modeling for this. Specifically, every chess player belongs to at least one club, but some of them can belong to two clubs. Players play…

chessstats
- 21
- 2
2
votes
0 answers
soft training and classification (class membership)
there are several soft classifiers in r, such as linear discriminant analysis. Functions such as lda {MASS} show the likelihood of each case being classified to belong to each of the classes defined in training. That's prefect.
However, as far as I…

Hugo
- 203
- 2
- 6
1
vote
0 answers
fitting multilevel models for data that is both multiple membership and repeated measures
I have a longitudinal dataset with 5 repeated measures, where individuals are nested within counties and may have moved to a new county during the study period, e.g.,
> df
# A tibble: 15 × 4
ID wave county Y
1…

epigurl
- 11
- 1
1
vote
1 answer
How does non-uniqueness of data (aka duplicate data points) affect clustering?
I am trying to self-learn more about different clustering methods. I think I understand the main idea of the algorithms, but perhaps their use-cases can shed light on something that puzzles me - namely, can two different data points have the same…
user223366
1
vote
0 answers
Comparing consistency of membership across multiple categorical variables
I'm interested in testing for membership similarity between multiple categorical variables.
For instance, let's say that two categorical variables have the following membership:
Group1 = 1, 1, 2, 2, 3, 3
Group2 = 2, 2, 1, 1, 3, 3
I want to test…

mforde84
- 11
- 1
1
vote
1 answer
CDT for Multiple Correspondence Analysis (MCA): what if there are multiple modalities selected for one variable?
I have the following set of qualitative data:
______________________________________________
| Observations | City | Transportation mean |
|______________|_________|_____________________|
| Individual#1 | Paris | Bicycle …

ebosi
- 119
- 4
0
votes
0 answers
Machine Learning with multiple correct labels
In my problem setting of a regression problem, the label of an instance is not only real valued vector but a set of real valued vectors.
Picking one specific vector from the set as the correct label performs badly.
Therefore I‘d like to include as a…
0
votes
1 answer
longitudinal cross membership multilevel model
I am compiling a data of club formation in which a person (id, the basic unit of observation) can belong to more than 1 club, while a majority of the sampled population do not belong to any clubs. Also, in a given year, more than 1 club were formed,…

user37891
- 101
- 3
0
votes
1 answer
How to select a single updated centroid if multiple centroids are equidistant for a single group when running k-means/k-medoids?
I am trying to write my own k-means and k-medoids clustering algorithms. I understand the general idea: given k centroids, one continually updates the centroids such that the distance between the points and centroids is minimized; these distances…
user223366