Questions tagged [family-tree]

A family tree, or pedigree chart, is a chart representing family relationships in a conventional tree structure.

The more detailed family trees used in medicine, , and social work are known as genograms. (From Wikipedia)

165 questions
1
vote
1 answer

Flutter Family Tree Creating Widget

I am searching for a Flutter plugin which can help in building a Family Tree exactly what it has to be and it needs to build dynamically from a raw JSON. I found some plugins but those are not I am expecting.
1
vote
0 answers

How can I add multiple spouses to my pedigree using the Kinship2 package?

I am trying to plot quite complex pedigrees using the Kinship2 R package. Most of the families show high levels of consanguinity and multiple spouses, how can I show that on my pedigree. This is my current plot ##data df <-…
1
vote
0 answers

Family tree - cousin relationships with repeated names

I am trying to get my cousin relationship to work accurately. For example when I do the query: cousins(X,ron). It returns: X = nancy;X = nancy;X = jeff;X = jeff;X = david;X = thomas. I believe these are the correct cousins but I don't want to…
Royale_w_cheese
  • 297
  • 2
  • 9
1
vote
1 answer

how to create a family tree structure? in flutter

How to create a family tree structure in Android? I already tried different types of tree structures but I can't find anything like this type of design structure, any idea about creating this type of tree structure? I am currently using Team-Blox…
balboa
  • 27
  • 1
  • 4
1
vote
1 answer

simple family tree in c++ using pointers

I'm trying to create a simple family tree in C++ by utilizing pointers in order to input strings for names that are then saved step-by-step within the code. For example, the program starts at an unknown spot, and the user is prompted to either…
kiril
  • 11
  • 2
  • 5
1
vote
0 answers

Family tree recursive sql query

I'm trying to create sql query for family tree purpuses that loops through table according to row values of the table it self. So I have table that has values person id | parent 1 | parent 2 1 | 2 | 5 2 | 3 | 4 …
Tanterus
  • 21
  • 3
1
vote
1 answer

How to find kth generation of a family tree in Prolog?

I am trying to find a list of all the family members for the kth generation of a given family. We are given the first members of the family and the family tree as well. Below is my KB for the same and also the implementation. I am not able to figure…
CodeHunter
  • 2,017
  • 2
  • 21
  • 47
1
vote
0 answers

i use dTree.js created a family tree chart, but how can i create only one mother marry father

this picture is i use dTree.js created a family tree chart; there is two mother; but this is not I want; this is my code [ { "name": "granddad", "class": "man", "textClass": "emphasis", "marriages": [ { "spouse":…
Aprilnd
  • 11
  • 5
1
vote
1 answer

How to insert a new cell in between UITableViewCell in Swift

How to insert a new cell in between UITableViewCells when a cell gets selected from the UICollectionView? Here is what it would look like: I am trying to create a family tree(pedigree chart).when the parent is selected it shows a Detail and the…
Shibili
  • 117
  • 2
  • 11
1
vote
2 answers

Oracle SQL : family tree views using trees

I want to create a view who gives me the grandchildren of the oldest person who has some. And the problem is that I can't find a way to translate in sql the phrase : "who has some". I work in only one table which is pretty basic : Person :…
ChrisBlp
  • 83
  • 1
  • 8
1
vote
1 answer

Pre-Order Traversal Tree

I seem to be having an issue adding right nodes to left nodes. I have an input file (.txt) that is listed in pre-order Fred 1900 2 John 1925 3 Mary 1950 2 Jason 1972 0 Heather 1975 2 Sydney 2002 0 Hailey 2005 0 John 1951 1 Amy…
1011 1110
  • 743
  • 2
  • 17
  • 43
1
vote
3 answers

Why does using my print method with std::cout result in an error?

#include using namespace std; class Fam { public: char you, urmom, urdad; void addPerson(char y, char m, char f) { you = y; urmom = m; urdad = f; } }; class Tree:…
ree
  • 11
  • 1
1
vote
2 answers

create and infer relationships based on ID when reading in a csv in neo4j

I have a simple csv, with 4 lines, that looks like this: +------------+-------------+------------+-------------+ | ID | Name | FatherID | MotherID | +------------+-------------+------------+-------------+ | 1 | Mom Doe …
Monica Heddneck
  • 2,973
  • 10
  • 55
  • 89
1
vote
2 answers

Develop a cypher query in a procedural manner

I have been working with a family tree graph. I would like to answer a simple question: Return any family that has 3 or more Alzheimer identified members whom are deceased and who come from a family of mostly-left handed members (at least…
Monica Heddneck
  • 2,973
  • 10
  • 55
  • 89
1
vote
1 answer

Family tree with SWI-Prolog

I am trying to get a simple family tree to work with Prolog using a maximum of 3 facts being allowed, however I can't seem to be able to define my sister as the child of my parents. Here is what I've…
Bahador
  • 75
  • 1
  • 11