Mollison, P. L. (Patrick Loudon)
google.charts.load('current', {packages: ['corechart']});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var options = {
height: 200,
legend: { position: 'top', maxLines: 3 },
bar: { groupWidth: '75%' },
isStacked: true,
colors: ['#FF7600', '#409a3c', '#2178b5'],
vAxis:{
baselineColor: '#fff',
gridlineColor: '#fff',
textPosition: 'none'
}
};
var data = google.visualization.arrayToDataTable([
['', 'By', 'Posthumously by', 'About',
{ role: 'annotation' } ],
['1940-1941', 0, 0, 0, ''],
['1941-1942', 0, 0, 0, ''],
['1942-1943', 0, 0, 0, ''],
['1943-1944', 5, 0, 0, ''],
['1944-1945', 0, 0, 0, ''],
['1945-1946', 0, 0, 0, ''],
['1946-1947', 5, 0, 0, ''],
['1947-1948', 0, 0, 0, ''],
['1948-1949', 20, 0, 0, ''],
['1949-1950', 0, 0, 0, ''],
['1950-1951', 20, 0, 0, ''],
['1951-1952', 25, 0, 0, ''],
['1952-1953', 25, 0, 0, ''],
['1953-1954', 0, 0, 0, ''],
['1954-1955', 15, 0, 0, ''],
['1955-1956', 5, 0, 0, ''],
['1956-1957', 25, 0, 0, ''],
['1957-1958', 0, 0, 0, ''],
['1958-1959', 5, 0, 0, ''],
['1959-1960', 0, 0, 0, ''],
['1960-1961', 5, 0, 0, ''],
['1961-1962', 25, 0, 0, ''],
['1962-1963', 0, 0, 0, ''],
['1963-1964', 5, 0, 0, ''],
['1964-1965', 10, 0, 0, ''],
['1965-1966', 0, 0, 0, ''],
['1966-1967', 0, 0, 0, ''],
['1967-1968', 25, 0, 0, ''],
['1968-1969', 0, 0, 0, ''],
['1969-1970', 0, 0, 0, ''],
['1970-1971', 0, 0, 0, ''],
['1971-1972', 15, 0, 0, ''],
['1972-1973', 25, 0, 0, ''],
['1973-1974', 0, 0, 0, ''],
['1974-1975', 10, 0, 0, ''],
['1975-1976', 0, 0, 0, ''],
['1976-1977', 0, 0, 0, ''],
['1977-1978', 5, 0, 0, ''],
['1978-1979', 0, 0, 0, ''],
['1979-1980', 25, 0, 0, ''],
['1980-1981', 5, 0, 0, ''],
['1981-1982', 0, 0, 0, ''],
['1982-1983', 0, 0, 0, ''],
['1983-1984', 20, 0, 0, ''],
['1984-1985', 0, 0, 0, ''],
['1985-1986', 0, 0, 0, ''],
['1986-1987', 0, 0, 0, ''],
['1987-1988', 25, 0, 0, ''],
['1988-1989', 5, 0, 0, ''],
['1989-1990', 0, 0, 0, ''],
['1990-1991', 0, 0, 0, ''],
['1991-1992', 0, 0, 0, ''],
['1992-1993', 10, 0, 0, ''],
['1993-1994', 25, 0, 0, ''],
['1994-1995', 15, 0, 0, ''],
['1995-1996', 0, 0, 0, ''],
['1996-1997', 0, 0, 0, ''],
['1997-1998', 25, 0, 0, ''],
['1998-1999', 0, 0, 0, ''],
['1999-2000', 0, 0, 0, ''],
['2000-2001', 0, 0, 0, ''],
['2001-2002', 0, 0, 0, ''],
['2002-2003', 0, 0, 0, ''],
['2003-2004', 0, 0, 0, ''],
['2004-2005', 0, 0, 0, ''],
['2005-2006', 25, 0, 0, ''],
['2006-2007', 5, 0, 0, ''],
['2007-2008', 0, 0, 0, ''],
['2008-2009', 5, 0, 0, ''],
['2009-2010', 0, 0, 0, ''],
['2010-2011', 0, 0, 0, ''],
['2011-2012', 0, 0, 0, ''],
['2012-2013', 0, 0, 0, ''],
['2013-2014', 0, 0, 0, ''],
['2014-2015', 0, 10, 0, ''],
['2015-2016', 0, 0, 0, ''],
['2016-2017', 0, 0, 0, ''],
['2017-2018', 0, 0, 0, ''],
['2018-2019', 0, 0, 0, ''],
['2019-2020', 0, 0, 0, ''],
['2020-2021', 0, 0, 0, ''],
]);
var chart = new google.visualization.ColumnChart(document.getElementById('chart_div'));
chart.draw(data, options);
};
function bringBack(sourceKey, targetKey, oclcNum) {
comment=prompt("Enter an optional comment and press "OK" or press "Cancel" to end", "");
if(comment!=null) {
window.location="/identities/move?undo&sourceKey="+sourceKey+"&targetKey="+targetKey+"&oclcNum="+oclcNum+"&originalIdentity="+targetKey+"&comment="+comment;
}
}
function sendBack(sourceKey, targetKey, oclcNum) {
comment=prompt("Enter an optional comment and press "OK" or press "Cancel" to end", "");
if(comment!=null) {
window.location="/identities/move?undo&sourceKey="+sourceKey+"&targetKey="+targetKey+"&oclcNum="+oclcNum+"&originalIdentity="+sourceKey+"&comment="+comment;
}
}
function getElementsByClassName(classname, node) {
if(!node)
node = document.getElementsByTagName("body")[0];
var a=;
var re=new RegExp('\b' + classname + '\b');
var els=node.getElementsByTagName("*");
for(var i=0; els.length>=i; i++)
if(re.test(els[i].className))
a.push(els[i]);
return a;
}
function turnEditEntriesOn(node) {
var entries=getElementsByClassName('editEntry', node);
if (entries) {
for (var i = 0; entries.length>=i; i++) {
entries[i].style.display="block";
}
}
document.getElementById('identitiesonSwitch').style.display='none';
document.getElementById('identitiesoffSwitch').style.display='inline';
}
function turnEditEntriesOff(node) {
var entries=getElementsByClassName('editEntry', node);
if (entries) {
for (var i = 0; entries.length>=i; i++) {
entries[i].style.display="none";
}
}
document.getElementById('identitiesonSwitch').style.display='inline';
document.getElementById('identitiesoffSwitch').style.display='none';
}
Mollison, P. L. (Patrick Loudon)
Overview
Works: | 18 works in 183 publications in 3 languages and 3,233 library holdings |
---|---|
Genres: | Statistics‡vMedical |
Roles: | Author, Editor |
Classifications: | RM171, 615.65 |
Publication Timeline
.
Most widely held works by
P. L Mollison
P. L Mollison
Blood transfusion in clinical medicine by
P. L Mollison(
Book
)
123
editions published
between
1951
and
2005
in
3
languages
and held by
1,602 WorldCat member
libraries
worldwide
Mollison's blood transfusion in clinical medicine by
Harvey G Klein(
)
17
editions published
between
1997
and
2014
in
English
and held by
1,444 WorldCat member
libraries
worldwide
Reference source for clinicians involved with patients requiring transfusion and for all staff working in transfusion services,
immunohaematology laboratories and blood banks. Provides a sound basis for understanding modern transfusion medicine
The Rh blood groups and their clinical effects by
P. L Mollison(
Book
)
19
editions published
between
1948
and
1960
in
English
and held by
115 WorldCat member
libraries
worldwide
Hypogammaglobulinaemia in the United Kingdom : [report of the] MRC Working Party on Hypogammaglobulinaemia by
MRC Working Party on Hypogammaglobulinaemia(
Book
)
3
editions published
in
1971
in
English
and held by
38 WorldCat member
libraries
worldwide
I gruppi sanguigni Rh e la loro importanza clinica by
P. L Mollison(
Book
)
2
editions published
in
1948
in
Italian
and held by
8 WorldCat member
libraries
worldwide
Los Grupos sanguíneos Rh y sus efectos clínicos by
P. L Mollison(
Book
)
5
editions published
in
1950
in
Spanish
and held by
5 WorldCat member
libraries
worldwide
La trasfusione del sangue in medicina clinica by
P. L Mollison(
Book
)
1
edition published
in
1987
in
Italian
and held by
3 WorldCat member
libraries
worldwide
The Rh blood groups and their clinical effects, by P.L. Mollison, A.E. Mourant and R.R. Race by
Medical Research Council (Great Britain)(
Book
)
2
editions published
in
1948
in
English
and held by
3 WorldCat member
libraries
worldwide
Practical blood transfusion by James Dilwyn James(
Book
)
1
edition published
in
1958
in
English
and held by
3 WorldCat member
libraries
worldwide
An International Symposium on the Nature and Significance of Complement Activation : September 1, 2, 3, 1976 by International Symposium on the Nature and Significance of Complement Activation(
Book
)
1
edition published
in
1977
in
English
and held by
3 WorldCat member
libraries
worldwide
Los grupos RH de la sangre y sus efectos clínicos by
P. L Mollison(
Book
)
2
editions published
in
1952
in
Spanish
and held by
3 WorldCat member
libraries
worldwide
The Rh blood groups and their clinical effects, by A.P. Mollison, A.F. Mourant and R.R. Race by
Medical Research Council (Great Britain)(
Book
)
1
edition published
in
1952
in
English
and held by
2 WorldCat member
libraries
worldwide
The Rh Blood Groups and their Clinical Effects. By P.L. Mollison, A.E. Mourant and R.R. Race. (Revision of memorandum no.
19.) by
P. L Mollison(
Book
)
1
edition published
in
1952
in
English
and held by
1 WorldCat member
library
worldwide
The problem of red cell compatibility by
P. L Mollison(
Book
)
1
edition published
in
1961
in
English
and held by
1 WorldCat member
library
worldwide
Medical Research Counil Memorandum No.27 The Rh Blood Groups and Their Clinical Effects by
P. L Mollison(
Book
)
1
edition published
in
1952
in
English
and held by
1 WorldCat member
library
worldwide
Transfusión sanguínea : aspectos clínicos by
P. L Mollison(
Book
)
1
edition published
in
1955
in
Spanish
and held by
1 WorldCat member
library
worldwide
Observations on cases of starvation at Belsen by
P. L Mollison(
)
1
edition published
in
1946
in
English
and held by
0 WorldCat member
libraries
worldwide
Advantages of a disodium-citrate-glucose mixture as a blood preservative by
John F Loutit(
)
1
edition published
in
1943
in
English
and held by
0 WorldCat member
libraries
worldwide
more
fewer
Audience Level
0 | 1 | |||
Kids | General | Special |
Audience level:
0.42
(from
0.10
for
Mollison's
... to
1.00
for
Observatio
...)
Related Identities
Anstee, David J. Editor
Klein, Harvey G. Author Editor
Contreras, Marcela
Engelfriet, C. P.
Klein, Harvey G. Author Editor
Mourant, A. E. (Arthur Ernest) 1904-1994
Race, R. R. (Robert Russell)
MRC Working Party on Hypogammaglobulinaemia
Drury, Alan N. Author of introduction
Jones, Jennifer Other Adapter
Useful Links
Library of Congress Authority File (English)
Virtual International Authority File.
Wikipedia Patrick Mollison
Wikidata.
Associated Subjects
Agammaglobulinemia Blood cells Blood groups Blood--Transfusion Great Britain Rh factor
Covers
Alternative Names
Mollison, P. L.
Mollison, Patrick Loudon
Mollison, Patrick Loudon, 1914-2011
Patrick Loudon Mollison haematologist (1914–2011)
Languages
English
(163)
Spanish
(10)
Italian
(3)
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-45070317-1', 'worldcat.org');
ga('send', 'pageview');
setTimeout(function(){var a=document.createElement("script");
var b=document.getElementsByTagName("script")[0];
a.src=document.location.protocol+"//dnn506yrbagrg.cloudfront.net/pages/scripts/0018/3695.js?"+Math.floor(new Date().getTime()/3600000);
a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b)}, 1);