search for: str_replace_all

Displaying 15 results from an estimated 15 matches for "str_replace_all".

2015 Oct 08
2
Uso comodín
Hola, Si quieres cambiar todas las ocurrencias sería "*str_replace_all()*" de esa misma librería (stringr). Si no quieres usarla por cualquier motivo, puedes hacer lo mismo con la función "*gsub()*" que está en el paquete "base" (instalada por defecto en R). Gracias, Calos Ortega www.qualityexcellence.es El 8 de octubre de 2015, 11:58, Franc...
2018 Mar 09
2
Imputar NA a SQL Server
...;https://aka.ms/ghei36> ________________________________ From: Javier Marcuzzi <javier.ruben.marcuzzi en gmail.com> Sent: Friday, March 9, 2018 3:47:46 AM To: Jes?s Para Fern?ndez Cc: Lista R Subject: Re: [R-es] Imputar NA a SQL Server Estimado Jes?s Para Fern?ndez Pruebe lo siguiente: str_replace_all(values, "'NA'", "NULL") El 8 de marzo de 2018, 17:38, Jes?s Para Fern?ndez <j.para.fernandez en hotmail.com<mailto:j.para.fernandez en hotmail.com>> escribi?: Buenas, Quiero meter NULL en algunos valores al hacer un insert en una base ded datos SQL Server...
2019 Sep 06
2
Cambiar el nombre de las variables de forma automática
Buenas tardes. Tengo una base de datos con 3200 variables. El nombre de todas ellas tiene un punto. Por ej., Canis.aureus. ¿Es posible cambiar ese punto por un espacio, en todas ellas, de forma automática? Esa quedaría así: Canis aureus Gracias [[alternative HTML version deleted]]
2013 Feb 01
4
Scrapping con R
Buenas tardes a todos: No sé si alguno de vosotros sabe si con R es posible buscar una palabra en una web (por ejemplo, buscar "Alicante" en www.lasprovincias.es) y que, cada vez que lo encuentre, vaya almacenado las urls en un data.frame gracias de antemano! -- Beatriz Martínez [[alternative HTML version deleted]]
2011 Jul 07
1
Working with string
Hi there, I have to extract some relevant portion from a defined string, which is a mix of numeric and character. However this has following sequence: Some String - Some numerical - "c/C" (or "p/P") - then again some set of numbers. Examples of such string is "fdahsdfcha163517253c463278643" or "fdahsdfcha163517253C463278643" or
2018 Mar 08
2
Imputar NA a SQL Server
Buenas, Quiero meter NULL en algunos valores al hacer un insert en una base ded datos SQL Server, pero no me reconoce NA, por lo que no se como meterlos... ?Alguno sabe como podria hacerse? La opci?n de no meter el valor no es v?lida porque tengo que meter varias columans y los NA se pueden dar en cualqueira de ellas... Gracias Jes?s [[alternative HTML version deleted]]
2011 Sep 13
2
How to use a variable after $ ($x) for subscripting a list, How to source from a character object (source(x))
...bscripting the list with a variable after the $ seems not possible. The only workaround I found for that is a function like loopExtract <- function(input) { codetemplate <- as.character("result <- foreach(i=1:length(levels)) %do% {listResult[[i]]$input)}") require(stringr) write(str_replace_all(codetemplate, "input", input), file="tmp.r") source("tmp.r") return(result) } in other words I stored a template of the desired code as characters in an object, substituted the "input" string in that character object, wrote the result to a file and sourced t...
2017 Nov 03
4
Problemas con función factor to integer
Hola, estoy teniendo problemas para conseguir que mi función haga lo que quiero. Necesito que coja los valores de la variable que le indico, le quite la letra que precede a dichos valores y los convierta en números enteros. Dejo un ejemplo de los datos que estoy tratando y de varias opciones de función con las que intento que funcione sin resultado. #Ejemplo >
2023 Jun 29
0
Processing a hierarchical string name
...;% group_by(variable) %>% summarize(count = sum(value)) %>% left_join(pl_vars, by=c("variable" = "name")) %>% filter(count > 0) %>% .$label %>% str_replace("^ !!", "") %>% #Drop the leading ' !!' str_replace_all("[^!]*!!", " ") #Replace each !!.* with space Bert, your solution was close to correct. It correctly dropped the right text, but didn't insert a space for each piece of text between "!!" and after the ":". I'm using those spaces to preserve the hie...
2010 Aug 25
0
stringr: version 0.4
...placement parameters * fixed() function now tells stringr functions to use fixed matching, rather than escaping the regular expression. Should improve performance for large vectors. * new ignore.case() modifier tells stringr functions to ignore case of pattern. * str_replace renamed to str_replace_all and new str_replace function added. This makes str_replace consistent with all functions. * new str_sub<- function (analogous to substring<-) for substring replacement * str_sub now understands negative positions as a position from the end of the string. -1 replaces Inf as indicator f...
2010 Aug 25
0
stringr: version 0.4
...placement parameters * fixed() function now tells stringr functions to use fixed matching, rather than escaping the regular expression. Should improve performance for large vectors. * new ignore.case() modifier tells stringr functions to ignore case of pattern. * str_replace renamed to str_replace_all and new str_replace function added. This makes str_replace consistent with all functions. * new str_sub<- function (analogous to substring<-) for substring replacement * str_sub now understands negative positions as a position from the end of the string. -1 replaces Inf as indicator f...
2013 Apr 18
0
Splitting vector
...trynzshzdcwgneyffrkpbxwilwqngrsals#geqmtkcpkp/qecgdfa#uag" library(seqinr) ?res<-lapply(0:4,function(i) lapply(2:5,function(j) splitseq(s2c(gsub("[#@/]","",vec1)),word=j,frame=i))) #or library(stringr) res1<-lapply(0:4,function(i) lapply(2:5,function(j) splitseq(s2c(str_replace_all(vec1,"[[:punct:]]","")),word=j,frame=i))) #or res2<-lapply(0:4,function(i) lapply(2:5,function(j) splitseq(s2c(gsub("[^[:alnum:]]","",vec1)),word=j,frame=i))) identical(res,res1) #[1] TRUE ?identical(res,res2) #[1] TRUE res[[1]][[1]] # [1] "mu" &...
2018 Feb 21
2
regex for "[2440810] / www.tinyurl.com/hgaco4fha3"
Hi, I need help for cleaning this: "[2440810] / www.tinyurl.com/hgaco4fha3" My desired output is: "[2440810] / tinyurl". My attemps: stringa <- "[2440810] / www.tinyurl.com/hgaco4fha3" b <- sub('^www.', '', stringa) #wanted to get rid of "www." part. Until first dot. b <- sub('[.].*', '', b) #clean from
2015 Oct 08
2
Uso comodín
Hola a todos Una pregunta creo que sencilla: Tengo un listado de nombres:Juan PereiraManuel PereiraPedro Pereira... Quiero cambiar todos los apellidos Pereira por Perez.Por ejemplo uso esta opcion:Datos$Nombre[Datos$Nombre==  "Juan Pereira"] <- "Juan Perez" Seguramente haya otros metodos para cambiarlos, pero mi pregunta es:¿puedo cambiarlos todos de golpe usando algún tipo
2020 Nov 24
2
Cambiar nombre de topic en análisis LDA
Buenas tardes Estoy haciendo un análisis LDA y me gustaría cambiar el nombre de los topics a la hora de visualizarlos y en vez de que se llamen 1,2,3...darles un nombre. ¿Es posible en este código? lda22 <- LDA(reviews_dtm, k = 22, control = list(seed = 1234)) lda22 %>% tidy() %>% group_by(topic) %>% top_n(10, beta) %>% ungroup() %>% mutate(term =