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
2
votes
1 answer

determine the old line of succession prolog

Given the british royal family, Using only male(X),female(X) and parent(X,Y) where the parent of X is Y, how to create the line of succession(X,Y) where Y is the successor of X in prolog I have defined all the males and female and parent I have…
user1771844
  • 43
  • 1
  • 9
1
vote
1 answer

Expanding the graph in Balkan FamilyTree Js library

Can you tell me if there is any possibility of showing full family tree without collapsing the part of family nodes? I want to see the full tree without hidden nodes, enter image description here I tried to find a specialized method for configuring…
Romanchito
  • 13
  • 2
1
vote
1 answer

position the edges in the middle

I am very new to Graphviz and trying to create an family tree. I have written this DOT format for my experimentation purposes. digraph { graph [splines=ortho] edge [dir=none] a [label="a"] b [label="b"] mid [shape=point] {rank = same;…
Hemant Bhargava
  • 3,251
  • 4
  • 24
  • 45
1
vote
0 answers

Curved lines in Graph view flutter

How do I achieve curved lines for connecting nodes in graphite or graph view? Like mind map curves I mentioned the image below but I want to implement the curved arrows in graphite.
1
vote
0 answers

Fraternity/Sorority Family Line Visualization Examples

I've been struggling to figure out a free way to display large family trees. I've attempted with ObservableHQ, DagreD3, Cytoscape, and ElkJS. I've learned about D3 Clustering, various tree maps, and countless examples that somewhat do the job. I…
Brian Main
  • 11
  • 2
1
vote
1 answer

How to draw Genogram relationship tree using ReactJs?

I'm looking for a simple Javascript Library (SVG) for the ReactJs module that allows me to draw family tree relationships. I've already referred GoJs Genogram. But it's paid and does not fully fill our requirements as well. What we need to show for…
Mihir Shah
  • 518
  • 2
  • 9
1
vote
1 answer

How to create line between react native elements (view/touchableopacity/button) to draw family tree

I'm trying to develop React Native mobile app to draw a family tree Any suggestion on how to draw line between the family member to create the tree, the element is touchableopacity. I have try using react-native-svg, but I cannot get the screen…
1
vote
2 answers

Hashmap implemented as a family tree with linked list Java

I have a question regarding a Hashmap that is implemented as a Family tree which looks like this. The key value of the Hashmap is the first name of the person and the value is from the class Person, which contains again the first name, the sex and…
AlexandraS
  • 23
  • 3
1
vote
1 answer

Save descendence in family tree with a recursive function in Python

I have a dictionary of a family tree with the name of the child as the key and their dad's and mom's name in a list as the value. d = { 'Kevin': ('Tom', 'Marge'), 'Marge': ('John', 'Mary'), 'Elle': ('Tom', 'Marge'), 'Seth': ('Tom', 'Marge'),…
t-y
  • 13
  • 2
1
vote
0 answers

Family tree with multiple spouse relation

Currently, I'm trying to have a family tree that will have Multiple Spouses. (When it is going more than two spouses, the link is not going separately), Son and daughter relationship also there I am doing this done in React.js. The relation I am…
zacarias
  • 11
  • 2
1
vote
1 answer

How an object can be treated as an array and iterates through it and save the response in javascript with trie data structure?

I am a beginner in the data structure. I have just started learning it. I am trying to create a family structure using the trie data structure. I am referring to the document for that on github…
1
vote
1 answer

What is a python recursion method for listing descendants from an ancestor in a non-binary tree?

I am a beginner in using Python. I have a MS Access database containing a family tree. I wish to use Python to query the family tree to list all the descendants of identified ancestors. The family tree is held in a table I have exported to excel. It…
Ihaka
  • 25
  • 4
1
vote
2 answers

Does any one knows about Family Tree using AJAX?

Does any one know about any script that will work like http://www.genoom.com family tree? Or can you guys give me any ideas about the database table structure they used to make the tree like this? And how are they displaying family member boxes…
Deb
  • 19
  • 2
1
vote
1 answer

Counting of all members of FamilyTree

I'm working on one of my first projects in Kotlin - FamilyTree. I have class Person, which contains fields: "name", "age", "mother", "father" and array of "siblings". After initializing all members, now I have to count all of them, and here is my…
rMetelov
  • 21
  • 5
1
vote
0 answers

print json object parent-kid relation in angular

Lets say I have this JSON object: { "id": 8, "name": "Simpson", "parent1": { "id": 10, "name": "Rush", "parent1": { "id": 12, "name": "Fields", "parent1": { "id": 1, …
cheshire
  • 1,109
  • 3
  • 15
  • 37