diff --git a/BibliographicStudies.Rmd b/BibliographicStudies.Rmd index 51d023b..29e3628 100644 --- a/BibliographicStudies.Rmd +++ b/BibliographicStudies.Rmd @@ -66,6 +66,11 @@ In this analysis we aimed to identify the common research topics Turkish patholo [MeSH Terms Pathology Articles From Turkey](https://sbalci.github.io/pubmed/MeSH_Terms_Pathology_Articles_From_Turkey.html) +--- + + + + --- @@ -116,6 +121,11 @@ In this analysis we aimed to identify the common research topics Turkish patholo +--- + + + + --- diff --git a/BibliographicStudies.nb.html b/BibliographicStudies.nb.html index 54f4cdc..f7ea32c 100644 --- a/BibliographicStudies.nb.html +++ b/BibliographicStudies.nb.html @@ -11,7 +11,7 @@ - +
If you want to see the code used in the analysis please click the code button on the right upper corner or throughout the page.
I would like to hear your feedback: https://goo.gl/forms/YjGZ5DHgtPlR1RnB3
-This document will be continiously updated and the last update was on 2019-01-13.
+This document will be continiously updated and the last update was on 2019-03-30.
In this analysis we aimed to identify the common research topics Turkish pathologists are interested. We extracted most common MeSH terms and keywords from PubMed articles using EDirect: MeSH Terms Pathology Articles From Turkey
Serdar Balcı, MD, Pathologist would like to hear your feedback: https://goo.gl/forms/YjGZ5DHgtPlR1RnB3
-This document will be continiously updated and the last update was on 2019-01-13.
+This document will be continiously updated and the last update was on 2019-03-30.
Data is downloaded from PubMed via Edirect2
(citation_id_type: "pmid" AND citation_id: 28984336) OR (citation_id_type: "pmid" AND citation_id: 21682559)
+
+
+
+pmid_only_path_journals <-
+read_delim("PancreasStudies/data/pmid_only_path_journals.txt", "\n", col_names = "PMID", col_types = "c")
+
+pmid_only_path_journals2 <- paste0("(citation_id_type: 'pmid' AND citation_id:",pmid_only_path_journals$PMID, ") OR ", collapse = "")
+
+write(pmid_only_path_journals2,
+"PancreasStudies/data/lensSearch.txt"
+)
Open Knowledge Maps (2019). Overview of research on intraductal tubulopapillary neoplasm. Retrieved from https://openknowledgemaps.org/map/cc04c53301920a93d451aa2ce3010243/ [30 Mar 2019].
+http://opencitations.net/download
+http://opencitations.net/corpus
+https://github.com/opencitations
+The OpenCitations Data Model
+https://figshare.com/articles/Metadata_for_the_OpenCitations_Corpus/3443876
Creating Open Citation Data with BCite
+https://semsci.github.io/SemSci2018/papers/1/bcite-semsci2018.html
Open Knowledge Maps (2019). Overview of research on (pathology[affiliation] or patoloji[affiliation]) and (turkey[affiliation] or türkiye[affiliation]). Retrieved from https://openknowledgemaps.org/map/e4dbf6c89015e402d6d7d560ab79e17a/ [30 Mar 2019].
+ +https://the.iris.ai/map/02f89d24-0415-43ab-878a-853ec17c5a59
+Serdar Balcı, MD, Pathologist would like to hear your feedback: https://goo.gl/forms/YjGZ5DHgtPlR1RnB3
+This document will be continiously updated and the last update was on 2019-03-31.
+(AD=Turkey AND SU=Pathology) OR (CU=Turkey AND SU=Pathology)
Indexes=SCI-EXPANDED, SSCI, A&HCI, CPCI-S, CPCI-SSH, BKCI-S, BKCI-SSH, ESCI Timespan=All years
+library(readr)
+data_hacettepePathology <- read_delim(here::here("data/data_hacettepepathology.csv"),
+ "|",
+ escape_double = FALSE,
+ col_names = FALSE,
+ trim_ws = TRUE)
+
+
+Parsed with column specification:
+cols(
+ X1 = [32mcol_double()[39m,
+ X2 = [31mcol_character()[39m,
+ X3 = [31mcol_character()[39m,
+ X4 = [31mcol_character()[39m,
+ X5 = [32mcol_double()[39m,
+ X6 = [31mcol_character()[39m
+)
+4 parsing failures.
+row col expected actual file
+210 -- 6 columns 8 columns '/Users/serdarbalciold/RepTemplates/pubmed/data/data_hacettepepathology.csv'
+242 -- 6 columns 8 columns '/Users/serdarbalciold/RepTemplates/pubmed/data/data_hacettepepathology.csv'
+243 -- 6 columns 8 columns '/Users/serdarbalciold/RepTemplates/pubmed/data/data_hacettepepathology.csv'
+281 -- 6 columns 8 columns '/Users/serdarbalciold/RepTemplates/pubmed/data/data_hacettepepathology.csv'
+
+
+# View(data_hacettepePathology)
+
+names(data_hacettepePathology) <- c("PMID", "ArticleTitle", "ISSN", "ISOAbbreviation", "PubDate", "Affiliation")
+
+
+
+
+
+
+
+library(tidyverse)
+library(stringr)
+str_count(string = data_hacettepePathology$Affiliation, pattern = ";") %>%
+ max()
+
+
+[1] 6924
+
+
+
+
+
+
+
+
+library(tidyverse)
+library(reshape2)
+
+DT.m1 <- melt(data_hacettepePathology2,
+ id.vars = c("PMID"),
+ measure.vars = paste0("Affiliation", 1:6925))
+
+DT.m2 <- DT.m1 %>%
+ filter(!is.na(value))
+
+DT.m2$count <- 1
+
+
+
+
+
+
+
+DT.m2$hacettepe <-
+ grepl(
+ pattern = ("[Hh]acettepe"),
+ x =
+ DT.m2$value
+ )
+
+
+
+
+
+
+DT.m3 <- DT.m2 %>%
+ filter(hacettepe == TRUE & pathology == TRUE) %>%
+ filter(speach==FALSE)
+
+
+
+
+
+
+final_hacettepePathology <- data_hacettepePathology %>%
+ filter(PMID %in% DT.m3$PMID) %>%
+ select(-c("Affiliation")) %>%
+ left_join(DT.m3, by="PMID") %>%
+ select(c("PMID", "ArticleTitle", "ISSN", "ISOAbbreviation", "PubDate")), Affiliation = value)
+
+
+
+Error: unexpected ',' in:
+" left_join(DT.m3, by="PMID") %>%
+ select(c("PMID", "ArticleTitle", "ISSN", "ISOAbbreviation", "PubDate")),"
+
+
+
+
+
+
+cat(paste0(final_hacettepePathology$PMID, " OR ")
+)
+
+
+
+30711942 OR 30711942 OR 30711942 OR 30614391 OR 30607566 OR 30553274 OR 30543088 OR 30420050 OR 30420050 OR 30378176 OR 30361868 OR 30356178 OR 30342481 OR 30337132 OR 30326153 OR 30264475 OR 30258736 OR 30222718 OR 30215711 OR 30213486 OR 30194012 OR 30177831 OR 30177831 OR 30177831 OR 30177831 OR 30151600 OR 30121298 OR 30066674 OR 30061063 OR 30039725 OR 29963264 OR 29933323 OR 29843558 OR 29758192 OR 29744787 OR 29737941 OR 29729229 OR 29631339 OR 29610498 OR 29565209 OR 29564756 OR 29557778 OR 29521057 OR 29481086 OR 29455242 OR 29433873 OR 29391599 OR 29391317 OR 29386221 OR 29368083 OR 29368083 OR 29342030 OR 29333888 OR 29307770 OR 29286564 OR 29278522 OR 29276876 OR 29221145 OR 29217050 OR 29183666 OR 29147924 OR 29147924 OR 29113255 OR 29107076 OR 29101765 OR 29071270 OR 28988523 OR 28957973 OR 28938499 OR 28885322 OR 28877062 OR 28872973 OR 28871709 OR 28843712 OR 28832323 OR 28832077 OR 28832074 OR 28786167 OR 28754454 OR 28705285 OR 28684169 OR 28645584 OR 28627959 OR 28616233 OR 28601298 OR 28597078 OR 28593113 OR 28576480 OR 28575990 OR 28566877 OR 28554554 OR 28549792 OR 28549792 OR 28488171 OR 28471040 OR 28452074 OR 28443589 OR 28333838 OR 28263489 OR 28263489 OR 28219585 OR 28216139 OR 28216139 OR 28203472 OR 28155970 OR 28155970 OR 28109637 OR 28083971 OR 29745124 OR 28028337 OR 27974811 OR 27932539 OR 27922519 OR 27909626 OR 27906844 OR 27896834 OR 27864098 OR 27857123 OR 27853495 OR 27810370 OR 27807490 OR 27561188 OR 27603550 OR 27513982 OR 27703380 OR 27699733 OR 27640103 OR 27640103 OR 27606145 OR 27575604 OR 27547915 OR 27520411 OR 27476657 OR 27448951 OR 27416885 OR 27409664 OR 27390585 OR 27366187 OR 27347166 OR 27303936 OR 27259049 OR 27216000 OR 27206703 OR 27180062 OR 27132540 OR 27129763 OR 27067808 OR 27062662 OR 27042238 OR 27026777 OR 27003050 OR 26997452 OR 26980028 OR 26970763 OR 26965579 OR 26945448 OR 26943384 OR 26872278 OR 26854080 OR 26848216 OR 26797858 OR 26797858 OR 26743593 OR 29090887 OR 29090884 OR 29090871 OR 28276221 OR 26681974 OR 26662466 OR 26584874 OR 26584697 OR 26578207 OR 26578207 OR 26575115 OR 26563115 OR 26550397 OR 26527231 OR 26519197 OR 26456966 OR 26449317 OR 26449317 OR 26449317 OR 26407049 OR 26397478 OR 26346511 OR 26341890 OR 26339344 OR 26332388 OR 26293571 OR 26242854 OR 26207004 OR 26100969 OR 26095595 OR 26090243 OR 26081979 OR 26081979 OR 26067811 OR 26064727 OR 26052757 OR 26045846 OR 25994764 OR 25906124 OR 25883712 OR 25842994 OR 25821721 OR 25811726 OR 25810266 OR 25769540 OR 25759781 OR 25755968 OR 25743721 OR 27708922 OR 25692090 OR 25667467 OR 25560609 OR 27047934 OR 25529806 OR 25498489 OR 25457509 OR 25378828 OR 25223322 OR 25218282 OR 25171023 OR 25110239 OR 25087613 OR 24977003 OR 24947701 OR 24913330 OR 24856141 OR 24840535 OR 24794787 OR 24794787 OR 24782301 OR 24777267 OR 24731921 OR 24718000 OR 24667046 OR 24585772 OR 24523789 OR 24505496 OR 24430434 OR 24385732 OR 24326152 OR 24285274 OR 24080633 OR 24022314 OR 24018817 OR 23998291 OR 23653827 OR 28509218 OR 23588333 OR 23551548 OR 23419599 OR 24592101 OR 23219110 OR 23153936 OR 23030256 OR 23011824 OR 23011823 OR 23011821 OR 22961375 OR 22316516 OR 22301705 OR 22158496 OR 21810125 OR 21665002 OR 21630194 OR 21496526 OR 21492232 OR 21469428 OR 21437995 OR 21074692 OR 21074691 OR 21069451 OR 20952300 OR 20952295 OR 20719821 OR 20674190 OR 20465615 OR 20418233 OR 20173504 OR 20060354 OR 19851201 OR 19468034 OR 19462235 OR 19403544 OR 19363472 OR 19232840 OR 19178738 OR 19130459 OR 19065380 OR 19024599 OR 19014058 OR 18844937 OR 18773281 OR 18446633 OR 18379707 OR 18374497 OR 18365589 OR 18246753 OR 18085395 OR 18066567 OR 17947476 OR 17926107 OR 17922596 OR 17619723 OR 17587245 OR 17573765 OR 17543474 OR 17451888 OR 17291234 OR 17130035 OR 17007443 OR 16912900 OR 16752009 OR 16489441 OR 16343208 OR 16328667 OR 16320561 OR 16194892 OR 16175081 OR 16021510 OR 16014115 OR 15998374 OR 15913445 OR 15802396 OR 15762048 OR 15670313 OR 15658132 OR 15623491 OR 15622249 OR 15456418 OR 15334737 OR 15249720 OR 15204955 OR 15073846 OR 15032077 OR 14692804 OR 14521262 OR 12911737 OR 12488986 OR 12464212 OR 12049830 OR 12007023 OR 11926913 OR 11925832 OR 11793117 OR 11699420 OR 11585325 OR 11568381 OR 11564220 OR 11462912 OR 11409483 OR 11263931 OR 11057782 OR 11053680 OR 10997737 OR 10985626 OR 10885604 OR 10828801 OR 10819111 OR 10699830 OR 10679036 OR 10671893 OR 10636586 OR 10508882 OR 10192575 OR 9863925 OR 9849847 OR 9821039 OR 9744734 OR 9732936 OR 9646237 OR 9641241 OR 9625858 OR 9181320 OR 9085813 OR 9152975 OR 8899473 OR 7768662 OR 11578422 OR 8191601 OR 8368909 OR 8372026 OR 8516224 OR 8444560 OR 8096638 OR 8419633 OR 17588038 OR 1813402 OR 2287298 OR 2283976 OR 2626097 OR
+
+
+
+(hacettepe[Affiliation] AND (pathology[Affiliation] OR patoloji[Affiliation])) NOT (speach[Affiliation] OR speech[Affiliation])
+(Turkey[Affiliation] OR Turkiye[Affiliation]) AND ((pathology[Affiliation] OR patoloji[Affiliation]) NOT (speach[Affiliation] OR speech[Affiliation]))
+
+
+
+final_hacettepePathology <- data_hacettepePathology %V>%
+ filter(PMID %in% DT.m3$PMID) %V>%
+ select(-c("Affiliation")) %V>%
+ left_join(DT.m3, by="PMID") %V>%
+ select(c("PMID", "ArticleTitle", "ISSN", "ISOAbbreviation", "PubDate"), Affiliation = value) %V>%
+ unique() %V>%
+ mutate(PMIDLink = paste0("https://www.ncbi.nlm.nih.gov/pubmed/", PMID, ""))
+
+
+
+filter: removed 241 rows (39%)
+select: dropped one variable (Affiliation)
+left_join: added 98 rows and added 6 columns (variable, value, count, hacettepe, pathology, …)
+select: dropped 6 variables (variable, value, count, hacettepe, pathology, …)
+mutate: new variable 'PMIDLink' with 374 unique values and 0% NA
+
+
+
+
+https://labs.cognitive.microsoft.com/en-us/project-academic-knowledge
+https://academic.microsoft.com/author/2608586067/publication/search?q=Serdar%20Balci
Open Knowledge Maps (2019). Overview of research on (pathology[affiliation] or patoloji[affiliation]) and (turkey[affiliation] or türkiye[affiliation]). Retrieved from https://openknowledgemaps.org/map/e4dbf6c89015e402d6d7d560ab79e17a/ [30 Mar 2019].
+ +https://the.iris.ai/map/02f89d24-0415-43ab-878a-853ec17c5a59
+Serdar Balcı, MD, Pathologist would like to hear your feedback: https://goo.gl/forms/YjGZ5DHgtPlR1RnB3
-This document will be continiously updated and the last update was on 2019-01-23.
+This document will be continiously updated and the last update was on 2019-03-30.
Search methods:
+Journal:
+Modern Pathology
+Laboratory Investigation
Conference:
+USCAP
+Annual Meeting of the United-States-and-Canadian-Academy-of-Pathology
From pdf ??
+install.packages("pdftools")
+
+
+Installing package into ‘/Users/serdarbalciold/Library/R/3.5/library’
+(as ‘lib’ is unspecified)
+also installing the dependency ‘qpdf’
+
+trying URL 'https://cran.rstudio.com/bin/macosx/el-capitan/contrib/3.5/qpdf_1.1.tgz'
+Content type 'application/x-gzip' length 3730250 bytes (3.6 MB)
+==================================================
+downloaded 3.6 MB
+
+trying URL 'https://cran.rstudio.com/bin/macosx/el-capitan/contrib/3.5/pdftools_2.2.tgz'
+Content type 'application/x-gzip' length 6580512 bytes (6.3 MB)
+==================================================
+downloaded 6.3 MB
+
+
+
+The downloaded binary packages are in
+ /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFaS0NC/downloaded_packages
+
+
+
+
+
+
+# download.file("https://github.com/Huitziii/crispy-pdf/raw/master/71_PV.62.pdf",
+ # "./71_PV.62.pdf")
+text <- pdf_text("data/eurospine/2014/eurospine-2014-2014qf.pdf")
+
+
+
+Error in pdf_text("data/eurospine/2014/eurospine-2014-2014qf.pdf") :
+ could not find function "pdf_text"
+
+
+
+
+
+
+
+library(tidyverse)
+library(officer)
+
+
+
+
+
+
+
+
+
+
+lyon2014$content_type
+
+
+
+<content_type>
+ Public:
+ add_ext: function (extension, type)
+ add_override: function (value)
+ add_slide: function (partname)
+ clone: function (deep = FALSE)
+ initialize: function (package_dir)
+ remove_slide: function (partname)
+ save: function ()
+ Private:
+ default: application/vnd.openxmlformats-package.relationships+xml ...
+ filename: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ override: application/vnd.openxmlformats-officedocument.wordproces ...
+
+
+
+
+
+
+glimpse(lyon2014)
+
+
+
+List of 1308
+ $ package_dir : chr "/var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFaS0NC/file138a4c66125c"
+ $ doc_properties:Classes 'core_properties', 'R6' <core_properties>
+ Public:
+ clone: function (deep = FALSE)
+ get_data: function ()
+ initialize: function (package_dir)
+ save: function ()
+ set_created: function (value)
+ set_creator: function (value)
+ set_description: function (value)
+ set_keywords: function (value)
+ set_last_modified: function (value)
+ set_modified_by: function (value)
+ set_subject: function (value)
+ set_title: function (value)
+ Private:
+ doc: xml_document, xml_node
+ filename: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ set_core_property: function (tag, ns, value, attrs = NULL)
+ $ content_type :Classes 'content_type', 'R6' <content_type>
+ Public:
+ add_ext: function (extension, type)
+ add_override: function (value)
+ add_slide: function (partname)
+ clone: function (deep = FALSE)
+ initialize: function (package_dir)
+ remove_slide: function (partname)
+ save: function ()
+ Private:
+ default: application/vnd.openxmlformats-package.relationships+xml ...
+ filename: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ override: application/vnd.openxmlformats-officedocument.wordproces ...
+ $ doc_obj :Classes 'docx_part', 'openxml_document', 'R6' <docx_part>
+ Inherits from: <openxml_document>
+ Public:
+ clone: function (deep = FALSE)
+ cursor_backward: function ()
+ cursor_begin: function ()
+ cursor_bookmark: function (id)
+ cursor_end: function ()
+ cursor_forward: function ()
+ cursor_reach: function (keyword)
+ cursor_replace_first_img: function (id, src, width, height)
+ cursor_replace_first_text: function (id, text)
+ dir_name: function ()
+ docx_show_chunk: function ()
+ feed: function (file)
+ file_name: function ()
+ get: function ()
+ get_at_cursor: function ()
+ has_bookmark: function (id)
+ initialize: function (path, main_file, cursor, body_xpath)
+ length: function ()
+ name: function ()
+ rel_df: function ()
+ relationship: function ()
+ remove: function ()
+ replace_all_text: function (oldValue, newValue, onlyAtCursor = TRUE, warn = TRUE,
+ save: function ()
+ set_cursor: function (cursor)
+ Private:
+ body_xpath: /w:document/w:body
+ cursor: /w:document/w:body/*[1307]
+ doc: xml_document, xml_node
+ filename: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ package_dir: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ reldir: word
+ rels_doc: relationship, R6
+ rels_filename: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ $ styles :'data.frame': 4 obs. of 5 variables:
+ ..$ style_type: chr [1:4] "paragraph" "character" "table" "numbering"
+ ..$ style_id : chr [1:4] "Normal" "DefaultParagraphFont" "TableNormal" "NoList"
+ ..$ style_name: chr [1:4] "Normal" "Default Paragraph Font" "Normal Table" "No List"
+ ..$ is_custom : logi [1:4] FALSE FALSE FALSE FALSE
+ ..$ is_default: logi [1:4] TRUE TRUE TRUE TRUE
+ $ headers :List of 2
+ ..$ header1.xml:Classes 'docx_part', 'openxml_document', 'R6' <docx_part>
+ Inherits from: <openxml_document>
+ Public:
+ clone: function (deep = FALSE)
+ cursor_backward: function ()
+ cursor_begin: function ()
+ cursor_bookmark: function (id)
+ cursor_end: function ()
+ cursor_forward: function ()
+ cursor_reach: function (keyword)
+ cursor_replace_first_img: function (id, src, width, height)
+ cursor_replace_first_text: function (id, text)
+ dir_name: function ()
+ docx_show_chunk: function ()
+ feed: function (file)
+ file_name: function ()
+ get: function ()
+ get_at_cursor: function ()
+ has_bookmark: function (id)
+ initialize: function (path, main_file, cursor, body_xpath)
+ length: function ()
+ name: function ()
+ rel_df: function ()
+ relationship: function ()
+ remove: function ()
+ replace_all_text: function (oldValue, newValue, onlyAtCursor = TRUE, warn = TRUE,
+ save: function ()
+ set_cursor: function (cursor)
+ Private:
+ body_xpath: /w:hdr
+ cursor: /w:hdr/*[1]
+ doc: xml_document, xml_node
+ filename: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ package_dir: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ reldir: word
+ rels_doc: relationship, R6
+ rels_filename: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ ..$ header2.xml:Classes 'docx_part', 'openxml_document', 'R6' <docx_part>
+ Inherits from: <openxml_document>
+ Public:
+ clone: function (deep = FALSE)
+ cursor_backward: function ()
+ cursor_begin: function ()
+ cursor_bookmark: function (id)
+ cursor_end: function ()
+ cursor_forward: function ()
+ cursor_reach: function (keyword)
+ cursor_replace_first_img: function (id, src, width, height)
+ cursor_replace_first_text: function (id, text)
+ dir_name: function ()
+ docx_show_chunk: function ()
+ feed: function (file)
+ file_name: function ()
+ get: function ()
+ get_at_cursor: function ()
+ has_bookmark: function (id)
+ initialize: function (path, main_file, cursor, body_xpath)
+ length: function ()
+ name: function ()
+ rel_df: function ()
+ relationship: function ()
+ remove: function ()
+ replace_all_text: function (oldValue, newValue, onlyAtCursor = TRUE, warn = TRUE,
+ save: function ()
+ set_cursor: function (cursor)
+ Private:
+ body_xpath: /w:hdr
+ cursor: /w:hdr/*[1]
+ doc: xml_document, xml_node
+ filename: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ package_dir: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ reldir: word
+ rels_doc: relationship, R6
+ rels_filename: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ $ footers :List of 2
+ ..$ footer1.xml:Classes 'docx_part', 'openxml_document', 'R6' <docx_part>
+ Inherits from: <openxml_document>
+ Public:
+ clone: function (deep = FALSE)
+ cursor_backward: function ()
+ cursor_begin: function ()
+ cursor_bookmark: function (id)
+ cursor_end: function ()
+ cursor_forward: function ()
+ cursor_reach: function (keyword)
+ cursor_replace_first_img: function (id, src, width, height)
+ cursor_replace_first_text: function (id, text)
+ dir_name: function ()
+ docx_show_chunk: function ()
+ feed: function (file)
+ file_name: function ()
+ get: function ()
+ get_at_cursor: function ()
+ has_bookmark: function (id)
+ initialize: function (path, main_file, cursor, body_xpath)
+ length: function ()
+ name: function ()
+ rel_df: function ()
+ relationship: function ()
+ remove: function ()
+ replace_all_text: function (oldValue, newValue, onlyAtCursor = TRUE, warn = TRUE,
+ save: function ()
+ set_cursor: function (cursor)
+ Private:
+ body_xpath: /w:ftr
+ cursor: /w:ftr/*[1]
+ doc: xml_document, xml_node
+ filename: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ package_dir: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ reldir: word
+ rels_doc: relationship, R6
+ rels_filename: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ ..$ footer2.xml:Classes 'docx_part', 'openxml_document', 'R6' <docx_part>
+ Inherits from: <openxml_document>
+ Public:
+ clone: function (deep = FALSE)
+ cursor_backward: function ()
+ cursor_begin: function ()
+ cursor_bookmark: function (id)
+ cursor_end: function ()
+ cursor_forward: function ()
+ cursor_reach: function (keyword)
+ cursor_replace_first_img: function (id, src, width, height)
+ cursor_replace_first_text: function (id, text)
+ dir_name: function ()
+ docx_show_chunk: function ()
+ feed: function (file)
+ file_name: function ()
+ get: function ()
+ get_at_cursor: function ()
+ has_bookmark: function (id)
+ initialize: function (path, main_file, cursor, body_xpath)
+ length: function ()
+ name: function ()
+ rel_df: function ()
+ relationship: function ()
+ remove: function ()
+ replace_all_text: function (oldValue, newValue, onlyAtCursor = TRUE, warn = TRUE,
+ save: function ()
+ set_cursor: function (cursor)
+ Private:
+ body_xpath: /w:ftr
+ cursor: /w:ftr/*[1]
+ doc: xml_document, xml_node
+ filename: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ package_dir: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ reldir: word
+ rels_doc: relationship, R6
+ rels_filename: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ $ footnotes :Classes 'docx_part', 'openxml_document', 'R6' <docx_part>
+ Inherits from: <openxml_document>
+ Public:
+ clone: function (deep = FALSE)
+ cursor_backward: function ()
+ cursor_begin: function ()
+ cursor_bookmark: function (id)
+ cursor_end: function ()
+ cursor_forward: function ()
+ cursor_reach: function (keyword)
+ cursor_replace_first_img: function (id, src, width, height)
+ cursor_replace_first_text: function (id, text)
+ dir_name: function ()
+ docx_show_chunk: function ()
+ feed: function (file)
+ file_name: function ()
+ get: function ()
+ get_at_cursor: function ()
+ has_bookmark: function (id)
+ initialize: function (path, main_file, cursor, body_xpath)
+ length: function ()
+ name: function ()
+ rel_df: function ()
+ relationship: function ()
+ remove: function ()
+ replace_all_text: function (oldValue, newValue, onlyAtCursor = TRUE, warn = TRUE,
+ save: function ()
+ set_cursor: function (cursor)
+ Private:
+ body_xpath: /w:footnotes
+ cursor: /w:footnotes/*[last()]
+ doc: xml_document, xml_node
+ filename: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ package_dir: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ reldir: word
+ rels_doc: relationship, R6
+ rels_filename: /var/folders/76/rq_s_23s7fd5r8hqrbg8rmnc0000gp/T//RtmpFa ...
+ $ default_styles:List of 4
+ ..$ paragraph: chr "Normal"
+ ..$ character: chr "Default Paragraph Font"
+ ..$ table : chr "Normal Table"
+ ..$ numbering: chr "No List"
+ $ sect_dim :List of 3
+ ..$ page : Named int [1:2] 11920 15820
+ .. ..- attr(*, "names")= chr [1:2] "width" "height"
+ ..$ landscape: logi FALSE
+ ..$ margins : Named int [1:4] 540 1080 900 900
+ .. ..- attr(*, "names")= chr [1:4] "top" "bottom" "left" "right"
+ $ NA:
+
+
+Error in object[[i]] : subscript out of bounds
+
+
+
+
+
+