search for: read_docx

Displaying 17 results from an estimated 17 matches for "read_docx".

2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
? Fri, 29 Dec 2023 20:17:41 +0000 Andy <phaedrusv at gmail.com> ?????: > doc_in <- read_docx(files) > > Results in this error:Error in filetype %in% c("docx") && > grepl("^([fh]ttp)", file) :'length = 9' in coercion to 'logical(1)' help(read_docx) says that the function only imports one docx file. In order to read multiple files, use...
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
help(read_docx) says that the function only imports one docx file. In > order to read multiple files, use a for loop or the lapply function. > I told you people will suggest better ways to loop!! > > docx_summary(read_docx("Now they want us to charge our electric cars > from litter bins.doc...
2023 Dec 29
1
Help request: Parsing docx files for key words and appending to a spreadsheet
...oose.dir()) doc_path <- list.files(getwd(), pattern = ".docx", full.names = TRUE) files <- list.files(getwd(), ".docx") files length(files) ## This works to here - obtain a list of docx files in directory 'TEST with 9 files'. However, the next line doc_in <- read_docx(files) Results in this error:Error in filetype %in% c("docx") && grepl("^([fh]ttp)", file) :'length = 9' in coercion to 'logical(1)' No idea how to debug that. Even when trying Calum's suggestion with officer: content <- officer::docx_summary(...
2023 Dec 30
1
Help request: Parsing docx files for key words and appending to a spreadsheet
...me using the tkinter folder selection that you remarked on? I wanted to keep that so that the selection is interactive, but if there are better ways of doing this I am open to suggestions. Thanks again, both. Best wishes Andrew On 29/12/2023 22:25, CALUM POLWART wrote: > > > help(read_docx) says that the function only imports one docx file. In > order to read multiple files, use a for loop or the lapply function. > > > I told you people will suggest better ways to loop!! > > > > docx_summary(read_docx("Now they want us to charge our electric cars...
2015 Sep 29
4
sobre fread {data.table}
Buenas tardes, intento almacenar el contenido de un archivo .docx en un data.table, pero solo me devuelve 1855 filas cuando deberñian ser 6821. Sin embargo, el mismo archivo se me descarga completo usando read_docx {qdapTools}, pero este devuelve un vector carácter y no es lo que quiero. ¿Alguien sabe donde puede estar el problema? Nota: El docx procede de un archivo .rel que descargué de internet, al cual cambié la extensión por .doc y una vez abierto guardé como docx. Gracias!! Un saludo MªLuz [[altern...
2023 Dec 30
3
Help request: Parsing docx files for key words and appending to a spreadsheet
...<- "Now they want us to charge our electric cars from litter bins.docx" #full_filename <- paste0(filepath, filename) full_filename <- paste(filepath, filename, sep="/") if (!file.exists(full_filename)) { ? message("File missing") } else { ? content <- read_docx(full_filename) |> ??? docx_summary() ? # this reads docx for the full filename and ? # passes it ( |> command) to the next line ? # which summarises it. ? # the result is saved in a data frame object ? # called content which we shall show some ? # heading into from ? head(content) }...
2023 Dec 30
1
Help request: Parsing docx files for key words and appending to a spreadsheet
...d on? I wanted to keep that so that the selection is interactive, > but if there are better ways of doing this I am open to suggestions. > > Thanks again, both. > > Best wishes > Andrew > > > On 29/12/2023 22:25, CALUM POLWART wrote: > > > > > > help(read_docx) says that the function only imports one docx file. In > > order to read multiple files, use a for loop or the lapply function. > > > > > > I told you people will suggest better ways to loop!! > > > > > > > > docx_summary(read_docx("Now t...
2023 Dec 30
2
Help request: Parsing docx files for key words and appending to a spreadsheet
...#39;s original suggestion full_filename <- paste(filepath, filename, sep="/") # Eric's proposed fix #lets double check the file does exist! # The rest here is Calum's suggestion if (!file.exists(full_filename)) { ? message("File missing") } else { ? content <- read_docx(full_filename) ? docx_summary() ? # this reads docx for the full filename and ? # passes it ( |> command) to the next line ? # which summarises it. ? # the result is saved in a data frame object ? # called content which we shall show some ? # heading into from ? head(content) } Runnin...
2015 Sep 29
2
sobre fread {data.table}
...rls en gmail.com> > escribió: > >> Buenas tardes, >> >> intento almacenar el contenido de un archivo .docx en un data.table, pero >> solo me devuelve 1855 filas cuando deberñian ser 6821. >> >> Sin embargo, el mismo archivo se me descarga completo usando read_docx >> {qdapTools}, pero este devuelve un vector carácter y no es lo que quiero. >> >> ¿Alguien sabe donde puede estar el problema? >> >> Nota: El docx procede de un archivo .rel que descargué de internet, al >> cual >> cambié la extensión por .doc y una vez ab...
2023 Dec 29
2
Help request: Parsing docx files for key words and appending to a spreadsheet
Hi Andy: I don?t have an answer but I do have what I hope is some friendly advice. Generally the more information you can provide, the more likely you will get help that is useful. In your case you say that you tried several packages and they didn?t do what you wanted. Providing that code, as well as why they didn?t do what you wanted (be specific) would greatly facilitate things. Happy
2015 Sep 29
5
sobre fread {data.table}
...E7LE0rrb8ENmMiBqQ en mail.gmail.com> Content-Type: text/plain; charset="UTF-8" Buenas tardes, intento almacenar el contenido de un archivo .docx en un data.table, pero solo me devuelve 1855 filas cuando deberñian ser 6821. Sin embargo, el mismo archivo se me descarga completo usando read_docx {qdapTools}, pero este devuelve un vector carácter y no es lo que quiero. ¿Alguien sabe donde puede estar el problema? Nota: El docx procede de un archivo .rel que descargué de internet, al cual cambié la extensión por .doc y una vez abierto guardé como docx. Gracias!! Un saludo MªLuz -- Pedro...
2024 Jan 06
0
Help request: Parsing docx files for key words and appending to a spreadsheet
...;temp") > files <- list.files(path=basePath, pattern = "docx$") > > length(files) > # 2 > > # initialize a list to put the data in > myList <- vector(mode = "list", length = length(files)) > > for(i in 1:length(files)){ > fileDat <- read_docx(file.path(basePath, files[[i]])) > # get the data you want, here one line per item to make it clearer > # assume consistency among articles > ttl <- fileDat[[1]] > src <- fileDat[[2]] > dt <- fileDat[[3]] > aut <- fileDat[grepl("Byline:",fil...
2015 Sep 29
2
sobre fread {data.table}
...harset="UTF-8" > > > > Buenas tardes, > > > > intento almacenar el contenido de un archivo .docx en un data.table, pero > > solo me devuelve 1855 filas cuando deberñian ser 6821. > > > > Sin embargo, el mismo archivo se me descarga completo usando read_docx > > {qdapTools}, pero este devuelve un vector carácter y no es lo que quiero. > > > > ¿Alguien sabe donde puede estar el problema? > > > > Nota: El docx procede de un archivo .rel que descargué de internet, al > cual > > cambié la extensión por .doc y una vez...
2015 Sep 29
2
sobre fread {data.table}
...t; > Content-Type: text/plain; charset="UTF-8" > > Buenas tardes, > > intento almacenar el contenido de un archivo .docx en un data.table, pero > solo me devuelve 1855 filas cuando deberñian ser 6821. > > Sin embargo, el mismo archivo se me descarga completo usando read_docx > {qdapTools}, pero este devuelve un vector carácter y no es lo que quiero. > > ¿Alguien sabe donde puede estar el problema? > > Nota: El docx procede de un archivo .rel que descargué de internet, al cual > cambié la extensión por .doc y una vez abierto guardé como docx. > >...
2015 Sep 30
2
sobre fread {data.table}
...ot; >>> >>> Buenas tardes, >>> >>> intento almacenar el contenido de un archivo .docx en un data.table, pero >>> solo me devuelve 1855 filas cuando deberñian ser 6821. >>> >>> Sin embargo, el mismo archivo se me descarga completo usando read_docx >>> {qdapTools}, pero este devuelve un vector carácter y no es lo que quiero. >>> >>> ¿Alguien sabe donde puede estar el problema? >>> >>> Nota: El docx procede de un archivo .rel que descargué de internet, al >>> cual >>> cambié la ext...
2015 Sep 30
2
sobre fread {data.table}
...> >>>>> intento almacenar el contenido de un archivo .docx en un data.table, >>>>> pero >>>>> solo me devuelve 1855 filas cuando deberñian ser 6821. >>>>> >>>>> Sin embargo, el mismo archivo se me descarga completo usando read_docx >>>>> {qdapTools}, pero este devuelve un vector carácter y no es lo que >>>>> quiero. >>>>> >>>>> ¿Alguien sabe donde puede estar el problema? >>>>> >>>>> Nota: El docx procede de un archivo .rel que descargué...
2015 Oct 01
4
sobre fread {data.table}
...l contenido de un archivo .docx en un data.table, >> >>>>> pero >> >>>>> solo me devuelve 1855 filas cuando deberñian ser 6821. >> >>>>> >> >>>>> Sin embargo, el mismo archivo se me descarga completo usando >> read_docx >> >>>>> {qdapTools}, pero este devuelve un vector carácter y no es lo que >> >>>>> quiero. >> >>>>> >> >>>>> ¿Alguien sabe donde puede estar el problema? >> >>>>> >> >>>>>...