Property talk:P1853

Latest comment: 4 years ago by Simon Villeneuve in topic Rh blood group system

Documentation

Representsblood type (Q47657)
Data typeItem
Domain
According to this template: persons, animals
According to statements in the property:
human (Q5), fictional human (Q15632617) or anthropomorphic character (Q27921916)
When possible, data should only be stored as statements
Allowed values
According to this template: A (Q19831453), B (Q19831454), AB (Q19831455), O (Q19831451). Other items can be crated, if this is to be used for animal blood types.
According to statements in the property:
A (Q19831453), B (Q19831454), AB (Q19831455), O (Q19831451), unknown or A- (Q107540401)
When possible, data should only be stored as statements
ExampleAkira Ishida (Q418736)O (Q19831451)
Honoka Yoneya (Q115188790)A (Q19831453)
Tracking: usageCategory:Pages using Wikidata property P1853 (Q26206595)
ListsReports/P1853
Living people protection classproperty likely to be challenged (Q44597997), property that may violate privacy (Q44601380)
Proposal discussionProposal discussion
Current uses
Total32,445
Main statement32,443>99.9% of uses
Qualifier2<0.1% of uses
Search for values
[create Create a translatable help page (preferably in English) for this property to be included here]
One of A (Q19831453), B (Q19831454), AB (Q19831455), O (Q19831451), somevalue, A- (Q107540401): value must be one of the specified items. Please expand list if needed. (Help)
List of violations of this constraint: Database reports/Constraint violations/P1853#One of, values statistics, hourly updated report, search, SPARQL
Property “instance of (P31): human blood type (Q19831450)” declared by target items of “blood type (P1853): If [item A] has this property with value [item B], [item B] is required to have property “instance of (P31): human blood type (Q19831450)”. (Help)
List of violations of this constraint: Database reports/Constraint violations/P1853#Target required claim P31, hourly updated report, SPARQL
Single best value: this property generally contains a single value. If there are several, one would have preferred rank (Help)
Exceptions are possible as rare values may exist. Exceptions can be specified using exception to constraint (P2303).
List of violations of this constraint: Database reports/Constraint violations/P1853#single best value, SPARQL
Scope is as main value (Q54828448): the property must be used by specified way only (Help)
List of violations of this constraint: Database reports/Constraint violations/P1853#Scope, hourly updated report, SPARQL
Citation needed: the property must have at least one reference (Help)
Exceptions are possible as rare values may exist. Exceptions can be specified using exception to constraint (P2303). Known exceptions: Basshunter (Q383541)
List of violations of this constraint: Database reports/Constraint violations/P1853#citation needed
Allowed entity types are Wikibase item (Q29934200): the property may only be used on a certain entity type (Help)
Exceptions are possible as rare values may exist. Exceptions can be specified using exception to constraint (P2303).
List of violations of this constraint: Database reports/Constraint violations/P1853#Entity types
 
This property is being used by:

Please notify projects that use this property before big changes (renaming, deletion, merge with another property, etc.)

 
Possibly wrong inheritance pattern 1
A human who has blood type O can't have a child having blood type AB, and vice versa. (Help)
Violations query: SELECT * WHERE { ?item wdt:P25\u007Cwdt:P22 ?itemParent. ?item wdt:P1853 ?bloodType. ?itemParent wdt:P1853 ?bloodTypeParent. FILTER (?bloodType = wd:Q19831451 && ?bloodTypeParent = wd:Q19831455 \u007C\u007C ?bloodTypeParent = wd:Q19831451 && ?bloodType = wd:Q19831455) }
List of this constraint violations: Database reports/Complex constraint violations/P1853#Possibly wrong inheritance pattern 1
 
Possibly wrong inheritance pattern 2
Parents who have only blood type O or B, can't have a child having blood type A or AB. Similarly, parents with O or A, can't have a child having B or AB. (Help)
Violations query: SELECT * WHERE { ?item wdt:P25 ?parent1. ?item wdt:P22 ?parent2. ?item wdt:P1853 ?itemBloodType. ?parent1 wdt:P1853 ?parentBloodType1. ?parent2 wdt:P1853 ?parentBloodType2. FILTER ((?parentBloodType1 = wd:Q19831451 \u007C\u007C ?parentBloodType1 = wd:Q19831453) && (?parentBloodType2 = wd:Q19831451 \u007C\u007C ?parentBloodType2 = wd:Q19831453) && (?itemBloodType = wd:Q19831454 \u007C\u007C ?itemBloodType = wd:Q19831455) \u007C\u007C (?parentBloodType1 = wd:Q19831451 \u007C\u007C ?parentBloodType1 = wd:Q19831454) && (?parentBloodType2 = wd:Q19831451 \u007C\u007C ?parentBloodType2 = wd:Q19831454) && (?itemBloodType = wd:Q19831453 \u007C\u007C ?itemBloodType = wd:Q19831455) ) }
List of this constraint violations: Database reports/Complex constraint violations/P1853#Possibly wrong inheritance pattern 2

Other items can be created, if this is to be used for animal blood types. Andy Mabbett (Pigsonthewing); Talk to Andy; Andy's edits 22:07, 25 April 2015 (UTC)Reply

Pivot table for blood types edit

Reference values: en:Blood type distribution by country.

SELECT ?country ?countryLabel ?items
(CONCAT(str(round(10000 * ?o/?items) / 100), "%")  as ?O)
(CONCAT(str(round(10000 * ?a/?items) / 100), "%")  as ?A)
(CONCAT(str(round(10000 * ?b/?items) / 100), "%")  as ?B)
(CONCAT(str(round(10000 * ?ab/?items) / 100), "%")  as ?AB) {
  { 
    SELECT ?country (count(?o_items) as ?o) (count(?a_items) as ?a) (count(?b_items) as ?b) (count(?ab_items) as ?ab) (count(?all_items) as ?items) {
      {?o_items wdt:P1853 wd:Q19831451 ; wdt:P27 ?country ; wdt:P31 wd:Q5 } UNION
      {?a_items wdt:P1853 wd:Q19831453 ; wdt:P27 ?country ; wdt:P31 wd:Q5 } UNION
      {?b_items wdt:P1853 wd:Q19831454 ; wdt:P27 ?country ; wdt:P31 wd:Q5 } UNION
      {?ab_items wdt:P1853 wd:Q19831455 ; wdt:P27 ?country ; wdt:P31 wd:Q5 } UNION
      {?all_items wdt:P1853 [] ; wdt:P27 ?country ; wdt:P31 wd:Q5 }
  	}
  	GROUP BY ?country
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en"  } 
}
ORDER BY DESC(?items)
Try it!

--Lockal (talk) 13:59, 18 February 2016 (UTC)Reply

Nice. Interesting query. I tweaked it slightly. From User:Lockal/Reports/P1853, it seems Japanese "O" are slightly over-represented.  ;)
--- Jura 15:25, 24 February 2016 (UTC)Reply
According to Confidence Interval Calculator for Proportions, for current number of items the confidence interval for 95% confidence level is ±0.75% (i.e. O-type is 29.51% to 31.01%), which fits Japanese Red Cross Society data. I still prefer fujita1978 paper, because it clearly describes the methodology of measurement.
Blood type B might imply longevity is another interesting paper. Interestingly enough, Wikidata confirms the result of research in some way (among of 76 over-80-years-and-already-dead subjects 26% are sharing blood type B, while the common distribution is ~21.24%). This result does not reach statistical significance, but it would be interesting to watch how distribution changes with Wikidata growth. --Lockal (talk) 08:56, 25 February 2016 (UTC)Reply

Rh blood group system edit

  Notified participants of WikiProject Medicine
Hi,
I think that this property should have a qualifier to precise the Rh blood group system (Q425832). Simon Villeneuve (talk) 15:54, 14 January 2020 (UTC)Reply

Return to "P1853" page.