Skip to content
Snippets Groups Projects
python-data-1-warmup.ipynb 529 KiB
Newer Older
{
 "cells": [
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
nbgitpuller's avatar
nbgitpuller committed
    "# Notebook 1 - Warm-up Exercises\n",
    "\n",
    "In this notebook we will warm up with a textual analysis exercise, using some of the assumed basic python knowledge for the course. We will see how to use some basic string methods as well as how to open and close files in python (later, some of these methods will be superceded by inbuild methods of data science packages we will use).\n",
    "\n",
    "For this we will be using the text [Humanistic Nursing by Josephine G. Paterson and Loretta T. Zderad](http://www.gutenberg.org/ebooks/25020). You already have this downloaded in your workspace.\n",
    "\n",
    "To open up the file, Python gives us a very handy function, we just have to give it the path to the file:"
   ]
  },
  {
   "cell_type": "code",
nbgitpuller's avatar
nbgitpuller committed
   "execution_count": 1,
   "metadata": {},
   "outputs": [],
   "source": [
    "file = open(\"data/humanistic_nursing.txt\")"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "An easy way to deal with text files is reading it line by line within a for loop:"
   ]
  },
  {
   "cell_type": "code",
nbgitpuller's avatar
nbgitpuller committed
   "execution_count": 2,
   "metadata": {
    "scrolled": true
   },
nbgitpuller's avatar
nbgitpuller committed
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "The Project Gutenberg eBook, Humanistic Nursing, by Josephine Paterson, and Loretta Zderad\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "This eBook is for the use of anyone anywhere at no cost and with\n",
      "\n",
      "almost no restrictions whatsoever.  You may copy it, give it away or\n",
      "\n",
      "re-use it under the terms of the Project Gutenberg License included\n",
      "\n",
      "with this eBook or online at www.gutenberg.org\n",
      "\n",
      "\n",
      "\n",
      "** This is a COPYRIGHTED Project Gutenberg eBook, Details Below **\n",
      "\n",
      "**     Please follow the copyright guidelines in this file.     **\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "Title: Humanistic Nursing\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "Authors: Josephine Paterson and Loretta Zderad\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "Release Date: April 8, 2008  [eBook #25020]\n",
      "\n",
      "\n",
      "\n",
      "Language: English\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "***START OF THE PROJECT GUTENBERG EBOOK HUMANISTIC NURSING***\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "Copyright (C) 2007 by Josephine Paterson and Loretta Zderad.\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "Humanistic Nursing\n",
      "\n",
      "\n",
      "\n",
      "(Meta-theoretical Essays on Practice)\n",
      "\n",
      "\n",
      "\n",
      "by Josephine Paterson and Loretta Zderad\n",
      "\n",
      "\n",
      "\n",
      "Copyright (C) 2007 by Josephine Paterson and sLoretta Zderad all rights\n",
      "\n",
      "reserved except as follows.  This e-text may be freely copied for\n",
      "\n",
      "academic and scholarly work with the copyright notice clearly affixed to\n",
      "\n",
      "all copies.  No commercial use may be made of any part of the text\n",
      "\n",
      "without the express permission of the copyright holders.\n",
      "\n",
      "\n",
      "\n",
      "This e-text version of the classic text \"Humanistic Nursing\" is\n",
      "\n",
      "made available with the kind permission of the authors and copyright\n",
      "\n",
      "holders, Josephine Paterson and Loretta Zderad. The book was originally\n",
      "\n",
      "written to define the Humanistic Nursing Theory which presented a way\n",
      "\n",
      "for each nurse to become-more as a person and to extend that\n",
      "\n",
      "becoming-more to the community of nurses in which he or she\n",
      "\n",
      "practices. The offering of this book in the \"free\" e-text format\n",
      "\n",
      "reiterates the continuing contribution of these two nurses long after\n",
      "\n",
      "their retirement from practice. It is their hope that nurses everywhere\n",
      "\n",
      "will take their vision for nursing and expand on it and integrate it\n",
      "\n",
      "into their nursing practice.  At the request of the authors this e-text\n",
      "\n",
      "version is complete with the original 1976 Front Matter.\n",
      "\n",
      "\n",
      "\n",
      "Susan Kleiman\n",
      "\n",
      "\n",
      "\n",
      "For more information or questions about the subject of Humanistic\n",
      "\n",
      "nursing or this e-text you may contact Professor Susan Kleiman, PhD, RN,\n",
      "\n",
      "CS, NPP at: susank@humanistic-nursing.com.  Alternatively you may visit\n",
      "\n",
      "the web site: www.humanistic-nursing.com.  The Humanistic Nursing\n",
      "\n",
      "Inquiry web site provides context for the major initiatives of\n",
      "\n",
      "humanistic nursing, which celebrate the enduring and immutable ideals of\n",
      "\n",
      "Humanism that give us insight into the fundamental truths of being in\n",
      "\n",
      "the world of nurses, patients, families, colleagues, and students.\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "FOREWORD to the 1976 Edition\n",
      "\n",
      "\n",
      "\n",
      "These essays will evoke different reactions from different\n",
      "\n",
      "readers. \"Well, I know that,\" for example, may be the reaction of a\n",
      "\n",
      "beginner in nursing; \"I wouldn't have said it that way but I knew that\n",
      "\n",
      "is really nursing.\" \"Since they've given us a methodology,\" perhaps from\n",
      "\n",
      "one more experienced in nursing; \"I'll give it a try.\" Others with still\n",
      "\n",
      "more or different kinds of experience may respond, \"It's about time\n",
      "\n",
      "nurses put that into words; it's about time.\"\n",
      "\n",
      "\n",
      "\n",
      "Timely as these essays are I would prefer not to use up the foreword\n",
      "\n",
      "with a listing of the crises, the \"eco-spasms,\" and scientific triumphs\n",
      "\n",
      "that would document their timeliness. It is my pleasure, rather, to use\n",
      "\n",
      "this opportunity to relate the six elements of my own reaction:\n",
      "\n",
      "\n",
      "\n",
      "Nursing has a solitariness until we find it has many companions in\n",
      "\n",
      "philosophy, science, and art.  It has a steadiness about its pace yet\n",
      "\n",
      "holds a potential for flights to higher elevations.  It is constantly\n",
      "\n",
      "changing yet has an enduring component of permanence.  Good is the word\n",
      "\n",
      "we use every day; our vision, however, is of excellence.  Its tasks\n",
      "\n",
      "often have the appearance of homeliness until we glimpse that kind of\n",
      "\n",
      "beauty that is humanness.  Nursing even sings very softly because our\n",
      "\n",
      "ears are attuned to \"a different drummer.\"\n",
      "\n",
      "\n",
      "\n",
      "Lilyan Weymouth, R.N., M.S.  Northampton, Massachusetts October 1975\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "PREFACE to the 1976 Edition\n",
      "\n",
      "\n",
      "\n",
      "Out of necessity nursing, as a profession, reflects the qualities of the\n",
      "\n",
      "culture in which it exists. In our culture for the past quarter of a\n",
      "\n",
      "century nursing has been assailed with rapid economic, technological,\n",
      "\n",
      "shortage- abundance, changing scenes' vicissitudes. In the individual\n",
      "\n",
      "nurse these arouse turmoil and uncertainty. These cultural stirrings\n",
      "\n",
      "inflame that part of the nurse's spirit capable of chaotic conflict and\n",
      "\n",
      "doubt. Often she questions her professional identity. ''Just what is a\n",
      "\n",
      "nurse?\" Her nurse colleagues, other professionals, and nonprofessionals\n",
      "\n",
      "freely, directly and indirectly-on television, in the theater, through\n",
      "\n",
      "the news media and the literature-pummel her with their multitudinous\n",
      "\n",
      "varied views.\n",
      "\n",
      "\n",
      "\n",
      "As searching, wondering, reflecting, relating microcosms within this\n",
      "\n",
      "perplexing health nursing world for longer than a quarter of a century,\n",
      "\n",
      "we present this book. Descriptively we view the chapters as hard-wrung,\n",
      "\n",
      "philosophical foundations, synthesized extracts from our lived\n",
      "\n",
      "experiences.  These metatheoretical essays on practice present an\n",
      "\n",
      "existential alternative approach for a professional nurse's knowing and\n",
      "\n",
      "becoming.\n",
      "\n",
      "\n",
      "\n",
      "These conceptualized existents are available because Miss Marguerite\n",
      "\n",
      "L. Burt, formerly Chief of Nursing Service, Northport, N.Y. Veterans\n",
      "\n",
      "Administration Hospital called them forth from us. These chapters are\n",
      "\n",
      "our response to her call. In 1972 Miss Burt requested us to develop a\n",
      "\n",
      "course for the professional nursing staff at Northport V.A.H. This book\n",
      "\n",
      "has evolved from the original presentations offered to the ten\n",
      "\n",
      "participants in the first course. While we taught and worked with five\n",
      "\n",
      "subsequent groups, we learned and continually revised and clarified our\n",
      "\n",
      "conceptualizations.  The course is entitled Humanistic Nursing.\n",
      "\n",
      "\n",
      "\n",
      "Fifty-three nurses have been involved in this course. Interest,\n",
      "\n",
      "appreciation, wonderment, effort, and investment characteristically\n",
      "\n",
      "depict their response. They convey that the humanistic nursing practice\n",
      "\n",
      "theory reflects what nursing means to them. Their hungry approach to the\n",
      "\n",
      "suggested readings has both surprised and pleased us. Our amazement\n",
      "\n",
      "persists over the participants' ability to concentratedly discuss\n",
      "\n",
      "abstract theory and concrete nursing practice for weekly day-long\n",
      "\n",
      "sessions over six-to nine-month periods. Presently requests to\n",
      "\n",
      "participate in the next humanistic nursing course are mounting from\n",
      "\n",
      "nurses both within and outside the Northport complex.\n",
      "\n",
      "\n",
      "\n",
      "The course, the theory, and this book are the fruits of our individual\n",
      "\n",
      "and collaborative efforts. While sharing seminar responsibility for\n",
      "\n",
      "graduate students in 1960, we began to dialogically and -dialectically\n",
      "\n",
      "struggle with professional and /clinical nursing issues. Discussing and\n",
      "\n",
      "searchingly questioning ourselves and our students became a\n",
      "\n",
      "value. Through conveying, struggling for clarification, openness to\n",
      "\n",
      "honest argument, we grew in our awareness that each was moved beyond her\n",
      "\n",
      "beginning thoughts.  Through reflection we have come to view, describe,\n",
      "\n",
      "and distinguish our dialogues as struggles with, and not against,\n",
      "\n",
      "others' ideas. Differences in response are valued for what they can tell\n",
      "\n",
      "us of our chosen area-nursing.  So dialectical dialogue has gradually\n",
      "\n",
      "become our predominant teaching method. We convey our ideas, are open to\n",
      "\n",
      "others' questions, struggle to clarify and really communicate, and\n",
      "\n",
      "question ourselves, and others. In the process of the humanistic nursing\n",
      "\n",
      "course, using this methodology, which is deliberate and, yet, natural\n",
      "\n",
      "and authentic for us, we and our professional nursing staff students\n",
      "\n",
      "have learned and become more human, more questioning, more clinical, and\n",
      "\n",
      "just, more.\n",
      "\n",
      "\n",
      "\n",
      "We value our moreness. Appreciating and valuing the effects of our\n",
      "\n",
      "actualizing selves as human beings, we must attest to our existential\n",
      "\n",
      "modes of nurse being; our inner mandate is: share. Hence, Humanistic\n",
      "\n",
      "Nursing has come into being.\n",
      "\n",
      "\n",
      "\n",
      "To find the meaning of nursing we have returned \"to the thing itself,\"\n",
      "\n",
      "to the phenomenon of nursing as it occurs in the everyday world. Our\n",
      "\n",
      "reflections on nursing as a lived experience flowed into the realm of\n",
      "\n",
      "metanursing. Obviously, these thoughts are only a beginning. They are\n",
      "\n",
      "offered in the hope of stimulating response and further development.\n",
      "\n",
      "Dialogue may be difficult at first because humanistic nursing represents\n",
      "\n",
      "one of our discipline's less articulated streams. Yet, it is a stream\n",
      "\n",
      "traceable to nursing's foundation and, as such, is related to nursing's\n",
      "\n",
      "artistic, scientific, and technological currents. It is not being,\n",
      "\n",
      "cannot be, developed in opposition to them.\n",
      "\n",
      "\n",
      "\n",
      "Science and art are forms of human responses to the human situation.\n",
      "\n",
      "They are valued in genuine humanism. Thus, the humanistic nursing\n",
      "\n",
      "approach does not reject advances in nursing technology, but rather it\n",
      "\n",
      "tries to increase their value by viewing their use within the\n",
      "\n",
      "perspective of the development of human potential. The same holds true\n",
      "\n",
      "for scientific, artistic, and clinical developments in nursing\n",
      "\n",
      "practice. They are the necessary means through which and in which\n",
      "\n",
      "humanistic nursing (a being and doing) is experienced and developed.\n",
      "\n",
      "\n",
      "\n",
      "At this time when serious concern is being expressed about the survival\n",
      "\n",
      "of nursing as a profession, humanistic nursing offers a note of\n",
      "\n",
      "optimism.  By examining the values underlying practice, it focuses on\n",
      "\n",
      "the meaning and means of nursing's particular' mode of interhuman\n",
      "\n",
      "caring. It increases respect for that caring as a means of human\n",
      "\n",
      "development. Nurses have the privilege of being with persons who are\n",
      "\n",
      "experiencing all the varied meanings of incarnate being with men and\n",
      "\n",
      "things in time and space in the entire range from birth to death. They\n",
      "\n",
      "not only have the opportunity to co-experience and co-search with\n",
      "\n",
      "patients the meaning of life, suffering, and death, but in the process\n",
      "\n",
      "they may become and help others become more-more human.\n",
      "\n",
      "\n",
      "\n",
      "Beyond this, the humanistic nursing approach respects nursing experience\n",
      "\n",
      "as a source of wisdom. By describing and conceptualizing the phenomena\n",
      "\n",
      "experienced in nursing situations, nurses could contribute to the\n",
      "\n",
      "development of nursing as a discipline. Even more, they could add to the\n",
      "\n",
      "knowledge of man.\n",
      "\n",
      "\n",
      "\n",
      "Humanistic nursing, then, is neither a break with nor a repetition of\n",
      "\n",
      "nursing's past. It is neither a rejection of nor a satisfaction with\n",
      "\n",
      "nursing's present. Rather it is an awakening to the possibilities of\n",
      "\n",
      "shaping our nursing world here and now and for the future.\n",
      "\n",
      "\n",
      "\n",
      "Thanks to Miss Marguerite L. Burt are in order for she provoked our\n",
      "\n",
      "conceptualizations of our lived nursing worlds. Dr. Frederick H. Wescoe,\n",
      "\n",
      "while Chief of Nursing Service, Northport, N.Y., VAH administratively\n",
      "\n",
      "facilitated the time and the means for our compiling these materials\n",
      "\n",
      "into a manuscript. Past nursing students challenged and grappled with\n",
      "\n",
      "our ideas and theirs insisting always on our forwarding our\n",
      "\n",
      "thinking. Our consultants, Miss Lilyan Weymouth and Miss Rose Godbout,\n",
      "\n",
      "were marvelous resources and counselors.\n",
      "\n",
      "\n",
      "\n",
      "Immediately we are most grateful to the participants in the six\n",
      "\n",
      "humanistic nursing courses taught here at the Northport VAH. As nurses,\n",
      "\n",
      "they received and accepted our expressed ideas to the extent of testing\n",
      "\n",
      "them in the fires of their real lived nursing practice settings. While\n",
      "\n",
      "struggling with our ideas and us, they gave to us. They were supportive,\n",
      "\n",
      "loving, and truly present with us in the community of nurses at\n",
      "\n",
      "Northport, VAH. Miss Sue McCann, clinical nurse specialist, one of our\n",
      "\n",
      "first course participants, has read and reviewed our materials. More\n",
      "\n",
      "than this Miss McCann has been a counselor, resource person, and a\n",
      "\n",
      "dependable friend in our humanistic nursing effort of the last three\n",
      "\n",
      "years.  We hope our chapters give back to others, at least just a part\n",
      "\n",
      "of what we have received from them in our travels in the nursing world.\n",
      "\n",
      "\n",
      "\n",
      "J.G.P\n",
      "\n",
      "L.T.Z.\n",
      "\n",
      "\n",
      "\n",
      "[Transcriber's Note: to the 1988 Edition\n",
      "\n",
      "\n",
      "\n",
      "Italic text has been marked as _text_.\n",
      "\n",
      "Bold text has been marked as ~text~.\n",
      "\n",
      "Obvious punctuation errors in the original have been corrected.\n",
      "\n",
      "Other corrections are noted at the end of the text.\n",
      "\n",
      "The original page numbers have been retained, e.g. {1} marks the start\n",
      "\n",
      "of page 1 in the original text.]\n",
      "\n",
      "\n",
      "\n",
      "HUMANISTIC NURSING\n",
      "\n",
      "\n",
      "\n",
      "_Josephine G. Paterson, DNSc, RN_\n",
      "\n",
      "_Loretta T. Zderad, PhD, RN_\n",
      "\n",
      "\n",
      "\n",
      "PREFACE\n",
      "\n",
      "\n",
      "\n",
      "    Somewhere there's a child a crying\n",
      "\n",
      "    Somewhere there's a child a crying\n",
      "\n",
      "    Somewhere there's a child a crying\n",
      "\n",
      "    Crying for freedom in South Africa.[1]\n",
      "\n",
      "\n",
      "\n",
      "But until someone hears the cry and responds, the child will continue to\n",
      "\n",
      "suffer the oppression of the current South African regime; and the world\n",
      "\n",
      "will continue to be less than it could be. To cry aloud when there seems\n",
      "\n",
      "no chance of being heard, belies a hope--perhaps an inherently human\n",
      "\n",
      "trait--that someone, somewhere, somehow will hear that cry and respond\n",
      "\n",
      "to it.\n",
      "\n",
      "\n",
      "\n",
      "This same hope, that someone would hear and respond, allowed existential\n",
      "\n",
      "psychologist Viktor Frankl to survive the systematic torture and\n",
      "\n",
      "degradation in Nazi death camps. As Frankl and others sought their way,\n",
      "\n",
      "they found meaning and salvation \"through love and in love;\" and by\n",
      "\n",
      "choosing to believe that \"life still waited for him, that a human being\n",
      "\n",
      "waited for his return.\"[2]\n",
      "\n",
      "\n",
      "\n",
      "There is power in the call of one person and the potential response of\n",
      "\n",
      "another; and incredible power when the potential response becomes real.\n",
      "\n",
      "There is the power for each person to change as she becomes more than\n",
      "\n",
      "she was before the dialogue. There is the power to transcend the\n",
      "\n",
      "situation as two people engage the events that are whirling around them\n",
      "\n",
      "and together try to make sense of their worlds and find a meaning to\n",
      "\n",
      "their existence. When the call and response between two people is as\n",
      "\n",
      "honest as it can be, there is the revolutionary power which the poet\n",
      "\n",
      "Muriel Rukeyser speaks of:\n",
      "\n",
      "\n",
      "\n",
      "    What would happen if one woman told the truth about her life?\n",
      "\n",
      "      The world would split open.[3]\n",
      "\n",
      "\n",
      "\n",
      "{iv}\n",
      "\n",
      "\n",
      "\n",
      "The call and response of an authentic dialogue between a nurse and\n",
      "\n",
      "patient has great power--the power to change the lived experiences of\n",
      "\n",
      "both patient and nurse, to change the situation, to change the world. It\n",
      "\n",
      "is the same authenticity we search for in relationships with our friends\n",
      "\n",
      "and lovers. The person who really listens to what we are saying, who\n",
      "\n",
      "really tries to understand our lived experiences of the world and who\n",
      "\n",
      "asks the same from us. When found, it brings the same exhilarating\n",
      "\n",
      "feeling of self-affirmation and the comforting feeling of well-being.\n",
      "\n",
      "\n",
      "\n",
      "For, if as holistic beings we are the implicate order explicating\n",
      "\n",
      "itself, as suggested by Bohm[4] and Newman[5] among others, then the\n",
      "\n",
      "responsibilities of those who would help (e.g., nurses) include making\n",
      "\n",
      "sense out of the chaos that can occur as illness disrupts past order and\n",
      "\n",
      "as the ever-present threat of non-being disrupts all order. When we are\n",
      "\n",
      "successful in helping patients and their loved ones make sense of their\n",
      "\n",
      "lives by bringing meaning to them, we make sense of and bring meaning to\n",
      "\n",
      "our own.\n",
      "\n",
      "\n",
      "\n",
      "And when we help create meaning, it is easier to remember why we chose\n",
      "\n",
      "nursing and why we continue to choose it despite what an underpaid and\n",
      "\n",
      "undervalued job it has become in today's marketplace. These are the\n",
      "\n",
      "moments when by a look or a word or a touch, the patient lets us know\n",
      "\n",
      "that he understands what is happening to him, what his choices are, and\n",
      "\n",
      "what he is going to do; that he knows we know; and that each knows that\n",
      "\n",
      "the other knows. When we get past our science and theories, our\n",
      "\n",
      "technical prowess, our titles and positions of influence, it is this\n",
      "\n",
      "shared moment of authenticity--between patient and nurse--that makes us\n",
      "\n",
      "smile and allows us to move forward in our own life projects.\n",
      "\n",
      "\n",
      "\n",
      "Nurse educators who seek such authentic exchanges with their students\n",
      "\n",
      "enjoy similar moments. The same can be said of deans of schools of\n",
      "\n",
      "nursing, administrators of delivery systems, executives and staff of\n",
      "\n",
      "nursing and professional organizations, and colleagues on a research\n",
      "\n",
      "project. It is the authentic dialogue between people that makes any\n",
      "\n",
      "activity worthwhile regardless of whether or not it is called successful\n",
      "\n",
      "by others.\n",
      "\n",
      "\n",
      "\n",
      "When Josephine G. Paterson and Loretta T. Zderad first published their\n",
      "\n",
      "book _Humanistic Nursing_ in 1976, society was in the midst of the new\n",
      "\n",
      "women's movement and nurses were going through the phase of\n",
      "\n",
      "assertiveness training, dressing for success, and learning to play the\n",
      "\n",
      "games that mother never taught us. Since then, nurses have moved into\n",
      "\n",
      "many sectors of society and have held power as we have never held it\n",
      "\n",
      "before. We have proved ourselves as politicians, administrators,\n",
      "\n",
      "researchers, and writers. We have refined our abilities to assess,\n",
      "\n",
      "diagnose, treat, and evaluate. We've raised money and balanced budgets.\n",
      "\n",
      "We've networked, organized, and formed coalitions.\n",
      "\n",
      "\n",
      "\n",
      "Yet, individually we are uneasy and collectively we are unable to\n",
      "\n",
      "articulate a vision clear enough so that others will join us. This\n",
      "\n",
      "re-issue of Paterson and {v} Zderad's classic work will help to remind\n",
      "\n",
      "us of another way of developing our power. Perhaps we can, once again,\n",
      "\n",
      "look for and call for authentic dialogue with our patients, our\n",
      "\n",
      "students, and our colleagues. Paterson and Zderad are clear in their\n",
      "\n",
      "method: discuss, question, convey, clarify, argue, and reflect. They\n",
      "\n",
      "remind us of our uniqueness and our commonality. They tell us that it is\n",
      "\n",
      "necessary to do with and be with each other in order for any one of us\n",
      "\n",
      "to grow. They help us celebrate the power of our choices.\n",
      "\n",
      "\n",
      "\n",
      "Is it ironic and fortunate that _Humanistic Nursing_ should be re-issued\n",
      "\n",
      "now when it is needed even more than it was during the late 1970s? Then,\n",
      "\n",
      "humanitarianism was in vogue. Now, it is under attack as a secular\n",
      "\n",
      "religion.\n",
      "\n",
      "\n",
      "\n",
      "Today, the technocratic imperative infiltrates an ever-increasing number\n",
      "\n",
      "of our lived experiences; and it becomes more difficult to ignore or\n",
      "\n",
      "dismiss Habermas's analysis that all interests have become technical\n",
      "\n",
      "rather than human.[6] As health care becomes increasingly commercial the\n",
      "\n",
      "profound experiences of living and dying are discussed in terms of\n",
      "\n",
      "profit and loss. Life itself is the focus of public debates about\n",
      "\n",
      "whether surrogacy involves a whole baby being bought and sold or only\n",
      "\n",
      "half of a baby, since one half already \"belongs\" to the natural father\n",
      "\n",
      "and so he cannot buy what he already owns.\n",
      "\n",
      "\n",
      "\n",
      "We have many choices before us: to adopt the values of commerce and\n",
      "\n",
      "redesign health care systems accordingly; to accept competition as the\n",
      "\n",
      "modus operandi or insist on other measures for people in need; to decide\n",
      "\n",
      "who will be cared for, who won't, who will pay, and how much?\n",
      "\n",
      "\n",
      "\n",
      "Perhaps it is time for us to turn away from the exchange between buyers\n",
      "\n",
      "and sellers, providers and consumers; and turn back to an exchange\n",
      "\n",
      "between two people trying to understand the space they share. Perhaps it\n",
      "\n",
      "is time for a shared dialogue with patients for whom the questions are\n",
      "\n",
      "most vital? Perhaps we need to hear their call and respond\n",
      "\n",
      "authentically. Perhaps they need to hear ours? For only then, as\n",
      "\n",
      "Paterson and Zderad have made quite clear, will our lived experiences in\n",
      "\n",
      "health care have any real meaning.\n",
      "\n",
      "\n",
      "\n",
      "    Patricia Moccia PHD, RN\n",
      "\n",
      "    Associate Professor and Chair\n",
      "\n",
      "    Department of Nursing Education\n",
      "\n",
      "    Teachers College Columbia University\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "FOOTNOTES:\n",
      "\n",
      "\n",
      "\n",
      "[1] _Azanian Freedom Song._ Lyrics by Otis Williams, music by Bernice\n",
      "\n",
      "Johnson Reagon. Washington, DC: Songtalk Publishing Co., 1982.\n",
      "\n",
      "\n",
      "\n",
      "[2] Frankl, Viktor. _Man's Search For Meaning._ Boston: Beacon Press,\n",
      "\n",
      "1959.\n",
      "\n",
      "\n",
      "\n",
      "[3] Rukeyser, Muriel. \"Kathe Kollwitz,\" in _By a Woman Writ_, ed. Joan\n",
      "\n",
      "Goulianos. New York: Bobbs Merrill, 1973, p. 374.\n",
      "\n",
      "\n",
      "\n",
      "[4] Bohm, David. _Wholeness and the Implicate Order._ London: Ark, 1980.\n",
      "\n",
      "\n",
      "\n",
      "[5] Newman, Margaret. _Health As Expanding Consciousness._ St. Louis: C.\n",
      "\n",
      "V. Mosby Company, 1986.\n",
      "\n",
      "\n",
      "\n",
      "[6] Habermas, Jurgen. _Knowledge and Human Interest_, (trans. J.\n",
      "\n",
      "Shapiro.) Boston: Beacon Press, 1971.\n",
      "\n",
      "\n",
      "\n",
      "CONTENTS\n",
      "\n",
      "\n",
      "\n",
      "PART ONE\n",
      "\n",
      "\n",
      "\n",
      "THEORETICAL ROOTS                                        1\n",
      "\n",
      "\n",
      "\n",
      "1 Humanistic Nursing Practice Theory                     3\n",
      "\n",
      "2 Foundations of Humanistic Nursing                      11\n",
      "\n",
      "3 Humanistic Nursing: A Lived Dialogue                   21\n",
      "\n",
      "4 Phenomenon of Community                                37\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "PART TWO\n",
      "\n",
      "\n",
      "\n",
      "METHODOLOGY--A PROCESS OF BEING                          49\n",
      "\n",
      "\n",
      "\n",
      "5 Toward a Responsible Free Research Nurse in the Health Arena  51\n",
      "\n",
      "6 The Logic of a Phenomenological Methodology            65\n",
      "\n",
      "7 A Phenomenological Approach to Humanistic Nursing Theory  77\n",
      "\n",
      "8 Humanistic Nursing and Art                             85\n",
      "\n",
      "9 A Heuristic Culmination                                95\n",
      "\n",
      "\n",
      "\n",
      "Appendix                                                 113\n",
      "\n",
      "Glossary                                                 121\n",
      "\n",
      "Bibliography                                             123\n",
      "\n",
      "Index                                                    127\n",
      "\n",
      "\n",
      "\n",
      "{1}\n",
      "\n",
      "\n",
      "\n",
      "Part 1\n",
      "\n",
      "\n",
      "\n",
      "THEORETICAL ROOTS\n",
      "\n",
      "\n",
      "\n",
      "{2} {3}\n",
      "\n",
      "\n",
      "\n",
      "1\n",
      "\n",
      "\n",
      "\n",
      "HUMANISTIC NURSING PRACTICE THEORY\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "Substantively this chapter introduces two aspects of the humanistic\n",
      "\n",
      "nursing practice theory: first, what this theory proposes and, second,\n",
      "\n",
      "how the proposals of the theory evolved.\n",
      "\n",
      "\n",
      "\n",
      "Concisely, humanistic nursing practice theory proposes that nurses\n",
      "\n",
      "consciously and deliberately approach nursing as an existential\n",
      "\n",
      "experience. Then, they reflect on the experience and phenomenologically\n",
      "\n",
      "describe the calls they receive, their responses, and what they come to\n",
      "\n",
      "know from their presence in the nursing situation. It is believed that\n",
      "\n",
      "compilation and complementary syntheses of these phenomenological\n",
      "\n",
      "descriptions over time will build and make explicit a science of\n",
      "\n",
      "nursing.\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "HUMANISTIC NURSING: ITS MEANING\n",
      "\n",
      "\n",
      "\n",
      "Nursing is an experience lived between human beings. Each nursing\n",
      "\n",
      "situation reciprocally evokes and affects the expression and\n",
      "\n",
      "manifestations of these human beings' capacity for and condition of\n",
      "\n",
      "existence. In a nurse this implies a responsibility for the condition of\n",
      "\n",
      "herself or being. The term \"humanistic nursing\" was selected\n",
      "\n",
      "thoughtfully to designate this theoretical pursuit to reaffirm and\n",
      "\n",
      "floodlight this responsible characteristic as fundamentally inherent to\n",
      "\n",
      "all artful-scientific nursing. Humanistic nursing embraces more than a\n",
      "\n",
      "benevolent technically competent subject-object one-way relationship\n",
      "\n",
      "guided by a nurse in behalf of another. Rather it dictates that nursing\n",
      "\n",
      "is a responsible searching, transactional relationship whose\n",
      "\n",
      "meaningfulness demands conceptualization founded on a nurse's\n",
      "\n",
      "existential awareness of self and of the other. {4}\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "EXISTENTIAL EXPERIENCE\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "\n",
      "Uniqueness--Otherness\n",
      "\n",
      "\n",
      "\n",
      "Existential experience infers human awareness of the self and of\n",
      "\n",
      "otherness. It calls for a recognition of each man as existing singularly\n",
      "\n",
      "in-his-situation and struggling and striving with his fellows for\n",
      "\n",
      "survival and becoming, for confirmation of his existence and\n",
      "\n",
      "understanding of its meaning.\n",
      "\n",
      "\n",
      "\n",
      "Martin Buber, philosophical anthropologist and rabbi, expressed artfully\n",
      "\n",
      "this uniqueness, struggle, and potential of each man. He said:\n",
      "\n",