Arseni, C.
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' } ],
['1930-1931', 0, 0, 0, ''],
['1931-1932', 0, 0, 0, ''],
['1932-1933', 0, 0, 0, ''],
['1933-1934', 0, 0, 0, ''],
['1934-1935', 0, 0, 0, ''],
['1935-1936', 0, 0, 0, ''],
['1936-1937', 5, 0, 0, ''],
['1937-1938', 0, 0, 0, ''],
['1938-1939', 0, 0, 0, ''],
['1939-1940', 0, 0, 0, ''],
['1940-1941', 0, 0, 0, ''],
['1941-1942', 0, 0, 0, ''],
['1942-1943', 0, 0, 0, ''],
['1943-1944', 0, 0, 0, ''],
['1944-1945', 0, 0, 0, ''],
['1945-1946', 0, 0, 0, ''],
['1946-1947', 0, 0, 0, ''],
['1947-1948', 0, 0, 0, ''],
['1948-1949', 10, 0, 0, ''],
['1949-1950', 0, 0, 0, ''],
['1950-1951', 15, 0, 0, ''],
['1951-1952', 20, 0, 0, ''],
['1952-1953', 0, 0, 0, ''],
['1953-1954', 0, 0, 0, ''],
['1954-1955', 0, 0, 0, ''],
['1955-1956', 0, 0, 0, ''],
['1956-1957', 10, 0, 0, ''],
['1957-1958', 10, 0, 0, ''],
['1958-1959', 15, 0, 0, ''],
['1959-1960', 0, 0, 0, ''],
['1960-1961', 0, 0, 0, ''],
['1961-1962', 0, 0, 0, ''],
['1962-1963', 0, 0, 0, ''],
['1963-1964', 5, 0, 0, ''],
['1964-1965', 0, 0, 0, ''],
['1965-1966', 15, 0, 0, ''],
['1966-1967', 5, 0, 0, ''],
['1967-1968', 25, 0, 0, ''],
['1968-1969', 15, 0, 0, ''],
['1969-1970', 10, 0, 0, ''],
['1970-1971', 10, 0, 0, ''],
['1971-1972', 15, 0, 0, ''],
['1972-1973', 20, 0, 0, ''],
['1973-1974', 15, 0, 0, ''],
['1974-1975', 15, 0, 0, ''],
['1975-1976', 0, 0, 0, ''],
['1976-1977', 0, 0, 0, ''],
['1977-1978', 5, 0, 0, ''],
['1978-1979', 20, 0, 0, ''],
['1979-1980', 20, 0, 0, ''],
['1980-1981', 20, 0, 0, ''],
['1981-1982', 25, 0, 0, ''],
['1982-1983', 20, 0, 0, ''],
['1983-1984', 25, 0, 0, ''],
['1984-1985', 30, 0, 0, ''],
['1985-1986', 25, 0, 0, ''],
['1986-1987', 15, 0, 0, ''],
['1987-1988', 15, 0, 0, ''],
['1988-1989', 20, 0, 0, ''],
['1989-1990', 0, 0, 0, ''],
['1990-1991', 20, 0, 0, ''],
['1991-1992', 5, 0, 0, ''],
['1992-1993', 5, 0, 0, ''],
['1993-1994', 5, 0, 0, ''],
['1994-1995', 0, 0, 0, ''],
['1995-1996', 0, 0, 0, ''],
['1996-1997', 0, 0, 0, ''],
['1997-1998', 0, 0, 0, ''],
['1998-1999', 0, 0, 0, ''],
['1999-2000', 0, 0, 0, ''],
['2000-2001', 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';
}
Arseni, C.
Overview
Works: | 88 works in 182 publications in 3 languages and 306 library holdings |
---|---|
Genres: | Scientific atlases History Biography |
Roles: | Author, Editor, Other |
Publication Timeline
.
Most widely held works by
C Arseni
C Arseni
Romanian neurosurgery(
Book
)
7
editions published
in
1982
in
English and Romanian
and held by
20 WorldCat member
libraries
worldwide
Durerea; fiziopatologie clinică şi terapeutică [de] C. Arseni [şi] I. Oprescu by
C Arseni(
Book
)
10
editions published
between
1966
and
1982
in
Romanian and Undetermined
and held by
17 WorldCat member
libraries
worldwide
Traité de neurochirurgie by
Dumitru Bagdasar(
Book
)
7
editions published
between
1951
and
1956
in
4
languages
and held by
16 WorldCat member
libraries
worldwide
The history of Romanian neurosurgery by
C Arseni(
Book
)
5
editions published
in
1981
in
English
and held by
14 WorldCat member
libraries
worldwide
Atlas clinic de electroencefalografie = Atlas of clinical electroencephalography by
C Arseni(
Book
)
3
editions published
in
1986
in
Romanian
and held by
14 WorldCat member
libraries
worldwide
English abstract (p. 62-64) provides overview of Part I and briefly identifies the 289 pages of illustrations in Part II.
Part I consists of 17 chapters (61 p.) explaining "basic notions necessary for the interpretation of an electroencephalogram
and synthetically describes the electrical aspects usually encountered in the most important brain diseases." Part II "illustrates,
by original, selective and representative EEG tracings, the theoretical notions presented in the first part."
Morfopatologia sistemului nervos by
Ion T Niculescu(
Book
)
2
editions published
in
1957
in
Romanian
and held by
11 WorldCat member
libraries
worldwide
Tulburǎri viscero-vegetative și trofice în leziunile encefalice by
C Arseni(
Book
)
4
editions published
in
1971
in
Romanian and Undetermined
and held by
10 WorldCat member
libraries
worldwide
Momente din istoria neurochirurgiei româneşti by
C Arseni(
Book
)
5
editions published
in
1988
in
Romanian and Undetermined
and held by
10 WorldCat member
libraries
worldwide
Hipertensiunea intracraniană [de] C. Arseni [şi] Al. I. Constantinescu by
C Arseni(
Book
)
3
editions published
in
1972
in
Romanian and Undetermined
and held by
10 WorldCat member
libraries
worldwide
Patologie neurochirurgicală infantilă by
C Arseni(
Book
)
5
editions published
in
1980
in
Romanian
and held by
8 WorldCat member
libraries
worldwide
Psihoneurologie = Psychoneurology by
C Arseni(
Book
)
5
editions published
in
1983
in
Romanian and Undetermined
and held by
8 WorldCat member
libraries
worldwide
Traumatismele vertebro-medulare şi ale nervilor [de] C. Arseni, Al. Constantinovici [şi] G. Panoza by
C Arseni(
Book
)
2
editions published
in
1973
in
Romanian
and held by
6 WorldCat member
libraries
worldwide
Metastazele sistemului nervos by
C Arseni(
Book
)
5
editions published
in
1990
in
Romanian
and held by
6 WorldCat member
libraries
worldwide
Bolile vasculare ale creierului si ale maduvei spinarii : In colaborare cu V. Cunescu by
C Arseni(
Book
)
4
editions published
in
1965
in
Romanian
and held by
6 WorldCat member
libraries
worldwide
Romanian neurosurgery(
Book
)
3
editions published
in
1987
in
English
and held by
5 WorldCat member
libraries
worldwide
Procesele expansive intracraniene; diagnostic, tratament, rezultate [de] C. Arseni [et al.](
Book
)
1
edition published
in
1973
in
Romanian
and held by
5 WorldCat member
libraries
worldwide
Secretul făuririi personalității : convorbiri [cu Constantin Arseni, et al.] by
Virgil Sorin(
Book
)
1
edition published
in
1982
in
Romanian
and held by
5 WorldCat member
libraries
worldwide
Romanian neurosurgery(
Book
)
3
editions published
in
1985
in
English
and held by
5 WorldCat member
libraries
worldwide
Neurogeriatrie : probleme de diagnostic şi tratament by
C Arseni(
Book
)
2
editions published
in
1984
in
Undetermined and Romanian
and held by
4 WorldCat member
libraries
worldwide
Bolile vasculare ale creierului si măduvei spinării by
C Arseni(
Book
)
2
editions published
in
1982
in
Romanian
and held by
4 WorldCat member
libraries
worldwide
more
fewer
Audience Level
0 | 1 | |||
Kids | General | Special |
Audience level:
0.87
(from
0.79
for
Atlas clin
... to
0.98
for
Romanian n
...)
Related Identities
Ciurea, A. V.
Oprescu, Ion
Constantinescu, Al. I.
Popoviciu, Liviu 1927- Author Editor
Horváth, Lenke
Niculescu, Ion T. Author
Roman, Ignat
Paiş, V. Other
Botez, Mihai Ioan
Sturza, Ioana
Useful Links
Library of Congress Authority File (English)
Virtual International Authority File.
Wikidata.
Associated Subjects
Brain--Diseases Brain--Surgery Brain--Tumors Brain--Wounds and injuries--Complications Celebrities Cerebrovascular disease Children--Diseases Electroencephalography Intracranial pressure Nervous system--Diseases Nervous system--Surgery Romania Senses and sensation Spinal cord--Diseases Surgery
Alternative Names
Arseni C.
Arseni, Constantin
Arseni, Constantin, 1912-1994
Arseni Constantin N.
Languages
Romanian
(48)
English
(18)
French
(4)
(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);