1 Vorbereitung
library(tidyverse)
library(printr)
library(rcrossref)
library(gt)
2 Via Crossref
Von der Crossref-Webseite:
Crossref makes research outputs easy to find, cite, link, assess, and reuse. We’re a not-for-profit membership organization that exists to make scholarly communications better.
Mit diesem R-Paket kann man Crossref abfragen:
library(rcrossref)
2.1 Abfragen, einfach
mindfulness_query <-
cr_works(query="mindfulness")
Ein Blick in die Ergebnisse:
mindfulness_query %>%
map(head)
## $meta
## total_results search_terms start_index items_per_page
## 1 18300 mindfulness 0 20
##
## $data
## # A tibble: 6 x 35
## alternative.id container.title created deposited published.online doi
## <chr> <chr> <chr> <chr> <chr> <chr>
## 1 290 Mindfulness 2014-03… 2019-06-… 2014-03-05 10.1007/s…
## 2 <NA> After Mindfulne… 2014-03… 2014-04-… <NA> 10.1057/9…
## 3 <NA> After Mindfulne… 2014-03… 2014-04-… <NA> 10.1057/9…
## 4 174 Mindfulness 2012-11… 2019-06-… 2012-11-20 10.1007/s…
## 5 255 Mindfulness 2013-10… 2019-06-… 2013-10-18 10.1007/s…
## 6 380 Mindfulness 2014-12… 2019-08-… 2014-12-28 10.1007/s…
## # … with 29 more variables: indexed <chr>, issn <chr>, issued <chr>,
## # member <chr>, prefix <chr>, publisher <chr>, score <chr>, source <chr>,
## # reference.count <chr>, references.count <chr>,
## # is.referenced.by.count <chr>, title <chr>, type <chr>, url <chr>,
## # language <chr>, short.container.title <chr>, author <list>, link <list>,
## # content_domain <list>, license <list>, isbn <chr>, published.print <chr>,
## # issue <chr>, page <chr>, volume <chr>, reference <list>,
## # update.policy <chr>, subject <chr>, assertion <list>
##
## $facets
## NULL
Welche Daten werden in den Daten data
zurückgegeben?
mindfulness_query$data %>%
names()
## [1] "alternative.id" "container.title" "created"
## [4] "deposited" "published.online" "doi"
## [7] "indexed" "issn" "issued"
## [10] "member" "prefix" "publisher"
## [13] "score" "source" "reference.count"
## [16] "references.count" "is.referenced.by.count" "title"
## [19] "type" "url" "language"
## [22] "short.container.title" "author" "link"
## [25] "content_domain" "license" "isbn"
## [28] "published.print" "issue" "page"
## [31] "volume" "reference" "update.policy"
## [34] "subject" "assertion"
3 Filter
Begrenzen wir uns auf Journal-Artikel:
mindfulness_query2 <-
cr_works(query = "mindfulness",
filter = c(type = "journal-article"))
mindfulness_query2$data %>%
slice(1:2) %>%
select(-reference) %>% # zu viel Kram
gt()
alternative.id | container.title | created | deposited | published.online | doi | indexed | issn | issued | member | prefix | publisher | score | source | reference.count | references.count | is.referenced.by.count | title | type | url | language | short.container.title | author | link | content_domain | license | published.print | issue | page | volume | update.policy | subject | assertion |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
290 | Mindfulness | 2014-03-04 | 2019-06-02 | 2014-03-05 | 10.1007/s12671-014-0290-6 | 2020-03-30 | 1868-8527,1868-8535 | 2014-03-05 | 297 | 10.1007 | Springer Science and Business Media LLC | 15.401021 | Crossref | 0 | 0 | 0 | Mindfulness of Death | journal-article | http://dx.doi.org/10.1007/s12671-014-0290-6 | en | Mindfulness | c("Edo", "William"), c("Shonin", "Van Gordon"), c("first", "additional") | c("http://link.springer.com/content/pdf/10.1007/s12671-014-0290-6.pdf", "http://link.springer.com/article/10.1007/s12671-014-0290-6/fulltext.html", "http://link.springer.com/content/pdf/10.1007/s12671-014-0290-6"), c("application/pdf", "text/html", "unspecified"), c("vor", "vor", "vor"), c("text-mining", "text-mining", "similarity-checking") | , FALSE | 2014-03-05, http://www.springer.com/tdm, 0, tdm | NA | NA | NA | NA | NA | NA | |
174 | Mindfulness | 2012-11-19 | 2019-06-02 | 2012-11-20 | 10.1007/s12671-012-0174-6 | 2020-03-28 | 1868-8527,1868-8535 | 2012-11-20 | 297 | 10.1007 | Springer Science and Business Media LLC | 15.151318 | Crossref | 5 | 5 | 4 | German Contributions to Mindfulness Research, Part 2: Assessment of Mindfulness | journal-article | http://dx.doi.org/10.1007/s12671-012-0174-6 | en | Mindfulness | c("Zeno", "Stefan"), c("Kupper", "Schmidt"), c("first", "additional") | c("http://link.springer.com/content/pdf/10.1007/s12671-012-0174-6.pdf", "http://link.springer.com/article/10.1007/s12671-012-0174-6/fulltext.html", "http://link.springer.com/content/pdf/10.1007/s12671-012-0174-6"), c("application/pdf", "text/html", "unspecified"), c("vor", "vor", "vor"), c("text-mining", "text-mining", "similarity-checking") | , FALSE | 2012-11-20, http://www.springer.com/tdm, 0, tdm | 2013-03 | 1 | 1-2 | 4 | NA | NA |
Weitere Infos auf der Hilfeseite.
3.1 Anzahl
Von der Hilfeseite:
limit Number of results to return in the query. Not relavant when searching with specific dois. Default: 20. Max: 1000
4 Dois rausziehen
mindfulness_dois <-
mindfulness_query2$data %>%
pull(doi)
mindfulness_dois %>% head()
## [1] "10.1007/s12671-014-0290-6" "10.1007/s12671-012-0174-6"
## [3] "10.1007/s12671-013-0255-1" "10.1007/s12671-014-0380-5"
## [5] "10.1007/s12671-011-0084-z" "10.1007/s12671-020-01532-1"
5 Zitationen herunterladen
Standard-Format ist Bibtex. Viele Zitationsstile sind möglich; Standard ist APA.
cr_cn(mindfulness_dois[1], format = "text")
## [1] "Shonin, E., & Van Gordon, W. (2014). Mindfulness of Death. Mindfulness. doi:10.1007/s12671-014-0290-6"
cr_cn(mindfulness_dois[1], format = "bibtex") %>%
cat()
## @article{Shonin_2014,
## doi = {10.1007/s12671-014-0290-6},
## url = {https://doi.org/10.1007%2Fs12671-014-0290-6},
## year = 2014,
## month = {mar},
## publisher = {Springer Science and Business Media {LLC}},
## author = {Edo Shonin and William Van Gordon},
## title = {Mindfulness of Death},
## journal = {Mindfulness}
## }
6 Abstracts herunterladen
Leider haben nicht alle Papers einen Abstract:
rcrossref::cr_abstract('10.1007/s12671-012-0174-6')
## Error: no abstract found for 10.1007/s12671-012-0174-6
Entsprechend:
cr_abstract(doi = mindfulness_dois[1])
## Error: no abstract found for 10.1007/s12671-014-0290-6
6.1 “Safely” Abstracts herunterladen
Probieren wir, mehrere Abstracts herunterzuladen:
cr_abstract_safely <- safely(cr_abstract)
mindfulness_abstracts <-
mindfulness_dois %>%
map(cr_abstract_safely)
mindfulness_abstracts %>%
map("error")
## [[1]]
## <simpleError: no abstract found for 10.1007/s12671-014-0290-6>
##
## [[2]]
## <simpleError: no abstract found for 10.1007/s12671-012-0174-6>
##
## [[3]]
## <simpleError: no abstract found for 10.1007/s12671-013-0255-1>
##
## [[4]]
## <simpleError: no abstract found for 10.1007/s12671-014-0380-5>
##
## [[5]]
## <simpleError: no abstract found for 10.1007/s12671-011-0084-z>
##
## [[6]]
## <simpleError: no abstract found for 10.1007/s12671-020-01532-1>
##
## [[7]]
## <simpleError: no abstract found for 10.1007/s12671-019-01286-5>
##
## [[8]]
## <simpleError: no abstract found for 10.1007/s12671-019-01283-8>
##
## [[9]]
## <simpleError: no abstract found for 10.1007/s12671-019-01145-3>
##
## [[10]]
## <simpleError: no abstract found for 10.1007/s12671-012-0117-2>
##
## [[11]]
## <simpleError: no abstract found for 10.1007/s12671-010-0036-z>
##
## [[12]]
## <simpleError: no abstract found for 10.1007/s12671-019-01181-z>
##
## [[13]]
## <simpleError: no abstract found for 10.1007/s12671-015-0456-x>
##
## [[14]]
## <simpleError: no abstract found for 10.1007/s12671-010-0015-4>
##
## [[15]]
## <simpleError: no abstract found for 10.1007/s12671-020-01481-9>
##
## [[16]]
## <simpleError: no abstract found for 10.1007/s12671-020-01398-3>
##
## [[17]]
## <simpleError: no abstract found for 10.1007/s12671-017-0858-z>
##
## [[18]]
## <simpleError: no abstract found for 10.1007/s12671-020-01377-8>
##
## [[19]]
## <simpleError: no abstract found for 10.1007/s12671-019-01237-0>
##
## [[20]]
## <simpleError: no abstract found for 10.1007/s12671-020-01432-4>
6.2 Artikel nur mit Abstracts
mindfulness_query3 <-
cr_works(query = "mindfulness",
filter = c(type = "journal-article",
has_abstract = TRUE),
limit = 3,
.progress ="text")
mindfulness_query3$data %>%
select(-reference) %>%
gt()
alternative.id | container.title | created | deposited | published.print | published.online | doi | indexed | issn | issue | issued | member | page | prefix | publisher | score | source | reference.count | references.count | is.referenced.by.count | subject | title | type | update.policy | url | volume | abstract | language | short.container.title | assertion | author | funder | link | content_domain | license |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1335 | Mindfulness | 2020-02-21 | 2021-02-20 | 2020-05 | 2020-02-21 | 10.1007/s12671-020-01335-4 | 2021-02-20 | 1868-8527,1868-8535 | 5 | 2020-02-21 | 297 | 1253-1266 | 10.1007 | Springer Science and Business Media LLC | 14.2459345 | Crossref | 60 | 60 | 0 | Applied Psychology,Experimental and Cognitive Psychology,Developmental and Educational Psychology,Health(social science),Social Psychology | Mindfulness and Affect-Network Density: Does Mindfulness Facilitate Disengagement from Affective Experiences in Daily Life? | journal-article | http://dx.doi.org/10.1007/springer_crossmark_policy | http://dx.doi.org/10.1007/s12671-020-01335-4 | 11 | <jats:title>Abstract</jats:title><jats:sec> <jats:title>Objectives</jats:title> <jats:p>Mindfulness has been positively associated with affective well-being, which may be explained by improved affective disengagement from prior experiences.</jats:p> </jats:sec><jats:sec> <jats:title>Methods</jats:title> <jats:p>We used a dynamic network approach to represent temporal interconnections between specific affective states (i.e., network density)—with less interconnected states indicating better affective disengagement—to investigate whether mindfulness predicted a lower network density. One-hundred twenty-five undergraduate students (<jats:italic>M</jats:italic> age = 22.87; <jats:italic>SD</jats:italic> = 5.06 years; 77.6% female) completed a 40-day ambulatory assessment, reporting on their affective experiences and state mindfulness six times a day, and either practiced mindfulness or were on a wait-list (control condition).</jats:p> </jats:sec><jats:sec> <jats:title>Results</jats:title> <jats:p>We found that neither the mindfulness training, β = −.11, <jats:italic>p</jats:italic> = .222, nor state mindfulness, β = −.06, <jats:italic>p</jats:italic> = .484, were associated with affective network density. However, given prior research indicating the importance of prior meditation experience, we found that participants with prior meditation experience reported lower affective network density when they reported higher state mindfulness than participants without meditation experiences, β = −.20, <jats:italic>p</jats:italic> = .048.</jats:p> </jats:sec><jats:sec> <jats:title>Conclusion</jats:title> <jats:p>The present study found that neither high levels of mindfulness nor a mindfulness training automatically improved affective disengagement in the form of lower network density. Rather, it seems that only those who were already familiar with practicing mindfulness and who were mindful in their daily life experienced easier disengagement from previous affective experiences. These findings may point toward a different, more complex, understanding of mindfulness in experienced meditators.</jats:p> </jats:sec> | en | Mindfulness | c("21 February 2020", NA, "The authors declare that they have no conflict of interest.", "This trial was approved by the local ethics committee at the Institute of Psychology at the Johannes Gutenberg-University of Mainz, Germany (2015-JGU-psychEK-011). All procedures performed in studies involving human participants were in accordance with the ethical standards of the institutional research committee Johannes Gutenberg University Mainz and with the 1964 Helsinki declaration and its later amendments or comparable ethical standards.", "Informed consent was obtained from all individual participants included in the study.", "All data and syntax are available at the Open Science Framework (ExternalRef removed)."), c(1, 1, 2, 3, 4, 5), c("first_online", "Ethics", "Ethics", "Ethics", "Ethics", "Ethics"), c("First Online", NA, NA, NA, NA, NA), c("ArticleHistory", "EthicsHeading", "EthicsHeading", "EthicsHeading", "EthicsHeading", "EthicsHeading"), c("Article History", "Compliance with Ethical Standards", "Conflict of Interest", "Ethical Approval", "Informed Consent", "Data Availability Statement") | c("http://orcid.org/0000-0002-3902-1488", NA), c(FALSE, NA), c("Zarah", "Mario"), c("Rowland", "Wenzel"), c("first", "additional") | Johannes Gutenberg-Universität Mainz | c("http://link.springer.com/content/pdf/10.1007/s12671-020-01335-4.pdf", "http://link.springer.com/article/10.1007/s12671-020-01335-4/fulltext.html", "http://link.springer.com/content/pdf/10.1007/s12671-020-01335-4.pdf"), c("application/pdf", "text/html", "application/pdf"), c("vor", "vor", "vor"), c("text-mining", "text-mining", "similarity-checking") | link.springer.com, FALSE | c("2020-02-21", "2020-02-21"), c("https://creativecommons.org/licenses/by/4.0", "https://creativecommons.org/licenses/by/4.0"), c(0, 0), c("tdm", "vor") |
1647 | Mindfulness | 2021-06-07 | 2021-06-07 | NA | 2021-06-07 | 10.1007/s12671-021-01647-z | 2021-06-07 | 1868-8527,1868-8535 | NA | 2021-06-07 | 297 | NA | 10.1007 | Springer Science and Business Media LLC | 14.1860485 | Crossref | 7 | 7 | 0 | Applied Psychology,Experimental and Cognitive Psychology,Developmental and Educational Psychology,Health(social science),Social Psychology | The Art of Introducing Mindfulness into Medical and Allied Health Curricula | journal-article | http://dx.doi.org/10.1007/springer_crossmark_policy | http://dx.doi.org/10.1007/s12671-021-01647-z | NA | <jats:title>Abstract</jats:title><jats:sec> <jats:title>Objectives</jats:title> <jats:p>Mindfulness is now widely used therapeutically in health settings, but for a range of reasons, it is not commonly integrated into the education of health professionals. This article aims to share practical insights and lessons learned from teaching mindfulness as core curriculum to the whole cohorts of medical students at Monash University.</jats:p> </jats:sec><jats:sec> <jats:title>Methods</jats:title> <jats:p>This reflective article will provide a personal perspective drawing on many years’ experience since the early 1990s of integrating mindfulness into the core medical curriculum including outlining the mindfulness-based lifestyle program delivered to the medical students. This will provide a backdrop to sharing important lessons relating to preparation, integration, delivery and review of mindfulness curriculum. A range of practical issues will be explored including making the case for it to faculty, finding the right language, giving it a context and rationale, using the most conducive teaching style, having the right tutors, carefully dealing with resistance, finding appropriate methods of assessment and the importance of review.</jats:p> </jats:sec><jats:sec> <jats:title>Results</jats:title> <jats:p>Evaluations and feedback on the program over a number of years have shown a high level of acceptance and utilisation of mindfulness-based skills by students. Since its inception, mindfulness training has now become integral in the training of many other health professional students at Monash.</jats:p> </jats:sec><jats:sec> <jats:title>Conclusions</jats:title> <jats:p>If done effectively, mindfulness can be successfully introduced and integrated into core curriculum of medical and allied health students using it as a meta-skill to support the development of student wellbeing a range of important clinical competencies.</jats:p> </jats:sec> | en | Mindfulness | c("10 May 2021", "7 June 2021", NA, "The author declares no competing interests."), c(1, 2, 1, 2), c("accepted", "first_online", "Ethics", "Ethics"), c("Accepted", "First Online", NA, NA), c("ArticleHistory", "ArticleHistory", "EthicsHeading", "EthicsHeading"), c("Article History", "Article History", "Declarations", "Conflict of Interest") | Craig, Hassed, first | c("https://link.springer.com/content/pdf/10.1007/s12671-021-01647-z.pdf", "https://link.springer.com/article/10.1007/s12671-021-01647-z/fulltext.html", "https://link.springer.com/content/pdf/10.1007/s12671-021-01647-z.pdf"), c("application/pdf", "text/html", "application/pdf"), c("vor", "vor", "vor"), c("text-mining", "text-mining", "similarity-checking") | link.springer.com, FALSE | c("2021-06-07", "2021-06-07"), c("https://creativecommons.org/licenses/by/4.0", "https://creativecommons.org/licenses/by/4.0"), c(0, 0), c("tdm", "vor") | |
1274 | Mindfulness | 2019-12-10 | 2020-12-09 | 2020-02 | 2019-12-10 | 10.1007/s12671-019-01274-9 | 2021-06-23 | 1868-8527,1868-8535 | 2 | 2019-12-10 | 297 | 493-506 | 10.1007 | Springer Science and Business Media LLC | 14.1860485 | Crossref | 38 | 38 | 2 | Applied Psychology,Experimental and Cognitive Psychology,Developmental and Educational Psychology,Health(social science),Social Psychology | Experimental Phenomenology in Mindfulness Research | journal-article | http://dx.doi.org/10.1007/springer_crossmark_policy | http://dx.doi.org/10.1007/s12671-019-01274-9 | 11 | <jats:title>Abstract</jats:title><jats:p>The present paper argues that experimental phenomenology has an important role to play in research on mindfulness. Experimental phenomenology is defined as a subcategory of phenomenology (defined as the science of our subjective experience of being in the world), which explores the effects of intentional variations of subjective experiencing (direction of attention and choice of attitude) on subsequent experience. To count as experimental phenomenology, both the independent and dependent variable have to be phenomenological. Because mindfulness involves paying attention to present experience with a specific attitude, it is well suited for experimental-phenomenological research. What makes experimental phenomenology into a scientific endeavor is the intersubjective nature of this kind of study: potential effects described by one person can be subjected to replication both by the same person, and by other persons. Also, conclusions drawn on the basis of this kind of study are hypothetical and provisional, and may be modified or specified on the basis of further study. In this paper, the principles of experimental phenomenology are illustrated by (a) variations of a given mindfulness practice (the body scan), and (b) the construction of a personalized mindfulness practice (mindful driving). Finally, three varieties of experimental phenomenology in research on mindfulness are discussed: (1) the use of qualitative methods to analyze mindfulness practices and their potential effects, (2) idiographic research with the use of single-subject designs and experience sampling, and (3) randomized controlled studies of the effects of mindfulness practices on present experience.</jats:p> | en | Mindfulness | c("10 December 2019", NA, "The author declares that he has no conflicts of interest.", "This article does not contain any studies with human participants performed by the author. Informed consent was obtained from the individuals who are mentioned in the case illustrations."), c(1, 1, 2, 3), c("first_online", "Ethics", "Ethics", "Ethics"), c("First Online", NA, NA, NA), c("ArticleHistory", "EthicsHeading", "EthicsHeading", "EthicsHeading"), c("Article History", "Compliance with Ethical Standards", "Conflict of Interest", "Ethical Approval") | http://orcid.org/0000-0002-1649-969X, FALSE, Lars-Gunnar, Lundh, first | 10.13039/501100003252, Lunds Universitet, crossref | c("http://link.springer.com/content/pdf/10.1007/s12671-019-01274-9.pdf", "http://link.springer.com/article/10.1007/s12671-019-01274-9/fulltext.html", "http://link.springer.com/content/pdf/10.1007/s12671-019-01274-9.pdf"), c("application/pdf", "text/html", "application/pdf"), c("vor", "vor", "vor"), c("text-mining", "text-mining", "similarity-checking") | link.springer.com, FALSE | c("2019-12-10", "2019-12-10"), c("https://creativecommons.org/licenses/by/4.0", "https://creativecommons.org/licenses/by/4.0"), c(0, 0), c("tdm", "vor") |
mindfulness_query3$data %>%
select(doi, abstract) %>%
slice(1) %>%
pull(abstract)
## [1] "<jats:title>Abstract</jats:title><jats:sec>\n<jats:title>Objectives</jats:title>\n<jats:p>Mindfulness has been positively associated with affective well-being, which may be explained by improved affective disengagement from prior experiences.</jats:p>\n</jats:sec><jats:sec>\n<jats:title>Methods</jats:title>\n<jats:p>We used a dynamic network approach to represent temporal interconnections between specific affective states (i.e., network density)—with less interconnected states indicating better affective disengagement—to investigate whether mindfulness predicted a lower network density. One-hundred twenty-five undergraduate students (<jats:italic>M</jats:italic> age = 22.87; <jats:italic>SD</jats:italic> = 5.06 years; 77.6% female) completed a 40-day ambulatory assessment, reporting on their affective experiences and state mindfulness six times a day, and either practiced mindfulness or were on a wait-list (control condition).</jats:p>\n</jats:sec><jats:sec>\n<jats:title>Results</jats:title>\n<jats:p>We found that neither the mindfulness training, β = −.11, <jats:italic>p</jats:italic> = .222, nor state mindfulness, β = −.06, <jats:italic>p</jats:italic> = .484, were associated with affective network density. However, given prior research indicating the importance of prior meditation experience, we found that participants with prior meditation experience reported lower affective network density when they reported higher state mindfulness than participants without meditation experiences, β = −.20, <jats:italic>p</jats:italic> = .048.</jats:p>\n</jats:sec><jats:sec>\n<jats:title>Conclusion</jats:title>\n<jats:p>The present study found that neither high levels of mindfulness nor a mindfulness training automatically improved affective disengagement in the form of lower network density. Rather, it seems that only those who were already familiar with practicing mindfulness and who were mindful in their daily life experienced easier disengagement from previous affective experiences. These findings may point toward a different, more complex, understanding of mindfulness in experienced meditators.</jats:p>\n</jats:sec>"
6.3 Abstract mit cr_abstract
Ziehen wir uns die Dois:
mindfulness_dois3 <-
mindfulness_query3$data %>%
pull(doi)
mindfulness_abstracts <-
mindfulness_dois3 %>%
map(cr_abstract)
6.4 Check
mindfulness_abstracts[[1]] %>%
cat()
## AbstractObjectivesMindfulness has been positively associated with affective well-being, which may be explained by improved affective disengagement from prior experiences.Methods
## We used a dynamic network approach to represent temporal interconnections between specific affective states (i.e., network density)—with less interconnected states indicating better affective disengagement—to investigate whether mindfulness predicted a lower network density. One-hundred twenty-five undergraduate students (
## M
## age = 22.87;
## SD
## = 5.06 years; 77.6% female) completed a 40-day ambulatory assessment, reporting on their affective experiences and state mindfulness six times a day, and either practiced mindfulness or were on a wait-list (control condition).
## Results
## We found that neither the mindfulness training, β = −.11,
## p
## = .222, nor state mindfulness, β = −.06,
## p
## = .484, were associated with affective network density. However, given prior research indicating the importance of prior meditation experience, we found that participants with prior meditation experience reported lower affective network density when they reported higher state mindfulness than participants without meditation experiences, β = −.20,
## p
## = .048.
## ConclusionThe present study found that neither high levels of mindfulness nor a mindfulness training automatically improved affective disengagement in the form of lower network density. Rather, it seems that only those who were already familiar with practicing mindfulness and who were mindful in their daily life experienced easier disengagement from previous affective experiences. These findings may point toward a different, more complex, understanding of mindfulness in experienced meditators.
mindfulness_abstracts[[2]] %>%
cat()
## AbstractObjectivesMindfulness is now widely used therapeutically in health settings, but for a range of reasons, it is not commonly integrated into the education of health professionals. This article aims to share practical insights and lessons learned from teaching mindfulness as core curriculum to the whole cohorts of medical students at Monash University.MethodsThis reflective article will provide a personal perspective drawing on many years’ experience since the early 1990s of integrating mindfulness into the core medical curriculum including outlining the mindfulness-based lifestyle program delivered to the medical students. This will provide a backdrop to sharing important lessons relating to preparation, integration, delivery and review of mindfulness curriculum. A range of practical issues will be explored including making the case for it to faculty, finding the right language, giving it a context and rationale, using the most conducive teaching style, having the right tutors, carefully dealing with resistance, finding appropriate methods of assessment and the importance of review.ResultsEvaluations and feedback on the program over a number of years have shown a high level of acceptance and utilisation of mindfulness-based skills by students. Since its inception, mindfulness training has now become integral in the training of many other health professional students at Monash.ConclusionsIf done effectively, mindfulness can be successfully introduced and integrated into core curriculum of medical and allied health students using it as a meta-skill to support the development of student wellbeing a range of important clinical competencies.
mindfulness_abstracts[[3]] %>%
cat()
## AbstractThe present paper argues that experimental phenomenology has an important role to play in research on mindfulness. Experimental phenomenology is defined as a subcategory of phenomenology (defined as the science of our subjective experience of being in the world), which explores the effects of intentional variations of subjective experiencing (direction of attention and choice of attitude) on subsequent experience. To count as experimental phenomenology, both the independent and dependent variable have to be phenomenological. Because mindfulness involves paying attention to present experience with a specific attitude, it is well suited for experimental-phenomenological research. What makes experimental phenomenology into a scientific endeavor is the intersubjective nature of this kind of study: potential effects described by one person can be subjected to replication both by the same person, and by other persons. Also, conclusions drawn on the basis of this kind of study are hypothetical and provisional, and may be modified or specified on the basis of further study. In this paper, the principles of experimental phenomenology are illustrated by (a) variations of a given mindfulness practice (the body scan), and (b) the construction of a personalized mindfulness practice (mindful driving). Finally, three varieties of experimental phenomenology in research on mindfulness are discussed: (1) the use of qualitative methods to analyze mindfulness practices and their potential effects, (2) idiographic research with the use of single-subject designs and experience sampling, and (3) randomized controlled studies of the effects of mindfulness practices on present experience.
6.5 Auf einen Haps
mindfulness_abstracts
## [[1]]
## [1] "AbstractObjectivesMindfulness has been positively associated with affective well-being, which may be explained by improved affective disengagement from prior experiences.Methods\n We used a dynamic network approach to represent temporal interconnections between specific affective states (i.e., network density)—with less interconnected states indicating better affective disengagement—to investigate whether mindfulness predicted a lower network density. One-hundred twenty-five undergraduate students (\n M\n age = 22.87;\n SD\n = 5.06 years; 77.6% female) completed a 40-day ambulatory assessment, reporting on their affective experiences and state mindfulness six times a day, and either practiced mindfulness or were on a wait-list (control condition).\n Results\n We found that neither the mindfulness training, β = −.11,\n p\n = .222, nor state mindfulness, β = −.06,\n p\n = .484, were associated with affective network density. However, given prior research indicating the importance of prior meditation experience, we found that participants with prior meditation experience reported lower affective network density when they reported higher state mindfulness than participants without meditation experiences, β = −.20,\n p\n = .048.\n ConclusionThe present study found that neither high levels of mindfulness nor a mindfulness training automatically improved affective disengagement in the form of lower network density. Rather, it seems that only those who were already familiar with practicing mindfulness and who were mindful in their daily life experienced easier disengagement from previous affective experiences. These findings may point toward a different, more complex, understanding of mindfulness in experienced meditators."
##
## [[2]]
## [1] "AbstractObjectivesMindfulness is now widely used therapeutically in health settings, but for a range of reasons, it is not commonly integrated into the education of health professionals. This article aims to share practical insights and lessons learned from teaching mindfulness as core curriculum to the whole cohorts of medical students at Monash University.MethodsThis reflective article will provide a personal perspective drawing on many years’ experience since the early 1990s of integrating mindfulness into the core medical curriculum including outlining the mindfulness-based lifestyle program delivered to the medical students. This will provide a backdrop to sharing important lessons relating to preparation, integration, delivery and review of mindfulness curriculum. A range of practical issues will be explored including making the case for it to faculty, finding the right language, giving it a context and rationale, using the most conducive teaching style, having the right tutors, carefully dealing with resistance, finding appropriate methods of assessment and the importance of review.ResultsEvaluations and feedback on the program over a number of years have shown a high level of acceptance and utilisation of mindfulness-based skills by students. Since its inception, mindfulness training has now become integral in the training of many other health professional students at Monash.ConclusionsIf done effectively, mindfulness can be successfully introduced and integrated into core curriculum of medical and allied health students using it as a meta-skill to support the development of student wellbeing a range of important clinical competencies."
##
## [[3]]
## [1] "AbstractThe present paper argues that experimental phenomenology has an important role to play in research on mindfulness. Experimental phenomenology is defined as a subcategory of phenomenology (defined as the science of our subjective experience of being in the world), which explores the effects of intentional variations of subjective experiencing (direction of attention and choice of attitude) on subsequent experience. To count as experimental phenomenology, both the independent and dependent variable have to be phenomenological. Because mindfulness involves paying attention to present experience with a specific attitude, it is well suited for experimental-phenomenological research. What makes experimental phenomenology into a scientific endeavor is the intersubjective nature of this kind of study: potential effects described by one person can be subjected to replication both by the same person, and by other persons. Also, conclusions drawn on the basis of this kind of study are hypothetical and provisional, and may be modified or specified on the basis of further study. In this paper, the principles of experimental phenomenology are illustrated by (a) variations of a given mindfulness practice (the body scan), and (b) the construction of a personalized mindfulness practice (mindful driving). Finally, three varieties of experimental phenomenology in research on mindfulness are discussed: (1) the use of qualitative methods to analyze mindfulness practices and their potential effects, (2) idiographic research with the use of single-subject designs and experience sampling, and (3) randomized controlled studies of the effects of mindfulness practices on present experience."
7 Andere APIs
7.1 Google Scholar hat keine API, wie es aussieht
Nach dieser Quelle hat Google Scholar keine offizielle API.
Es existieren aber kommerzielle Versuche eine API nachzustellen.
7.1.1 Weitere API
Hier ist ein Überblick über weitere APIs.