Displaying 20 results from an estimated 1000 matches similar to: "Working with string"
2017 Aug 02
4
Extracting numeric part from a string
Hi again,
I am struggling to extract the number part from below string :
"\"cm_ffm\":\"563.77\""
Basically, I need to extract 563.77 from above. The underlying number
can be a whole number, and there could be comma separator as well.
So far I tried below :
> library(stringr)
> str_extract("\"cm_ffm\":\"563.77\"",
2019 Aug 15
4
Feature request: non-dropping regmatches/strextract
A very common use case for regmatches is to extract regex matches into a new column in a data.frame (or data.table, etc.) or otherwise use the extracted strings alongside the input. However, the default behavior is to drop empty matches, which results in mismatches in column length if reassignment is done without subsetting.
For consistency with other R functions and compatibility with this use
2011 Feb 03
2
Sorting a Data Frame by hybrid string / number key
Hi,
I'm trying to present a table of some experimental data, and I want to order
the rows by the instance names. The issue I've got is that there are a
variety of conventions for the instance names (e.g. competition01,
competition13, small_1, big_20, med_9). What I want to be able to sort them
first in category order so: competition < small < med < big, and then
perform the
2019 Sep 23
5
Consulta
Buenas tarde a todo en s:
Tenia la versión de R 3.6 y utilizaba la paquetería de pdftools para extraer información de archivos en pdf actualice la versión 3.6.1 y ya no reconoce la paquetería alguien que me pueda ayudar. Prácticamente no reconoce las funciones de pdftools
library(pdftools)
library(stringr)?
library(NLP)?
library(tm)?
library(tesseract)?
library(magick)?
2019 Sep 24
2
Consulta
Emilio
Ahora cuando quiero instalar los paquetes pdftools, magick y otros más me salen
el siguiente error
WARNING: Rtools is required to build R packages but is not currently installed. Please download and install the appropriate version of Rtools before proceeding:
https://cran.rstudio.com/bin/windows/Rtools/
Installing package into ?C:/Users/bdominguez/Documents/R/win-library/3.6?
(as ?lib?
2013 Jul 15
3
ayuda con stringr
Hola a todos.
Soy un poco torpe manejando cadenas de texto, así que os pido ayuda.
Tengo un vector de texto de este tipo
datos$tipo
[1] m.1.p.Álava m.1.p.Albacete
[3] m.2.p.Alicante m.1.p.Almería
[5] m.3.p.Asturias m.1.p.Ávila
[7] m.1.p.Badajoz m.1.p.Baleares (Illes)
[9] m.1.p.Barcelona m.1.p.Burgos
[11] m.1.p.Cáceres m.1.p.Cádiz
Y quiero extraer el
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, Francisco Rodríguez
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]]
2017 Aug 03
2
Extracting numeric part from a string
... Or if you just want to stick with basic regex's without extra packages:
> x <- "\"cm_ffm\":\"563.77\""
> sub("[^[:digit:]]*([[:digit:]]*.?[[:digit:]]*).*","\\1",x)
[1] "563.77"
Cheers,
Bert
On Wed, Aug 2, 2017 at 5:16 PM, Ismail SEZEN <sezenismail at gmail.com> wrote:
>
>> On 3 Aug 2017, at 02:59,
2019 Aug 29
2
Feature request: non-dropping regmatches/strextract
Thank you, I am aware that there are packages that can accomplish this. I mentioned stringr::str_extract as a function that does not drop empty matches. I think that the behavior of regmatches(..., regexpr(...))?in base R should permit an option to prevent dropping of empty matches both for sake of consistency with the rest of the language (missing data does not yield a dropped index in other
2011 Sep 13
2
How to use a variable after $ ($x) for subscripting a list, How to source from a character object (source(x))
Dear R colleagues,
as result of a function a huge list is generated. From this result list
I'd like to extract information.
Think of the list i.e. as an object named "listResult" with the
following form:
[[a]]
[1] [2] [3] [4] [5]
[[b]]
[1] [2] [3] [4] [5]
[[c]]
[1] [2] [3] [4] [5]
where levels=c(a,b,c)
I'd like to extract a data.frame like
a [2]
b [2]
c [2]
What I
2023 Mar 31
1
Extraer texto de una columna en Excel
Muchas gracias Carlos, lo que quiero hacer es lo siguiente: extraer el
texto que hay entre textura/s hasta el punto final.
Ejemplo:
*Moderadamente profundos, bien drenados, de textura franco arenosa a franco
arcillo arenosa. Fertilidad natural media*
Lo que quiero extraer sería: *franco arenosa a franco arcillo arenosa *
Al final lo pude realizar de la siguiente manera:
df <-
2023 Mar 31
1
Extraer texto de una columna en Excel
Muchas gracias por la alternativa de utilizar la librería stringi, Carlos,
no la conocía.
On Fri, 31 Mar 2023 at 12:11, David Camilo Gomez Medina <
dcgomezme en unal.edu.co> wrote:
> Muchas gracias Carlos, lo que quiero hacer es lo siguiente: extraer el
> texto que hay entre textura/s hasta el punto final.
> Ejemplo:
> *Moderadamente profundos, bien drenados, de textura franco
2017 Aug 03
0
Extracting numeric part from a string
> On Aug 2, 2017, at 6:59 PM, Christofer Bogaso <bogaso.christofer at gmail.com> wrote:
>
> Hi again,
>
> I am struggling to extract the number part from below string :
>
> "\"cm_ffm\":\"563.77\""
>
> Basically, I need to extract 563.77 from above. The underlying number
> can be a whole number, and there could be comma separator
2017 Aug 03
0
Extracting numeric part from a string
> On 3 Aug 2017, at 02:59, Christofer Bogaso <bogaso.christofer at gmail.com> wrote:
>
> Hi again,
>
> I am struggling to extract the number part from below string :
>
> "\"cm_ffm\":\"563.77\""
>
> Basically, I need to extract 563.77 from above. The underlying number
> can be a whole number, and there could be comma separator as
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
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]]
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
2017 Aug 03
0
Extracting numeric part from a string
... and Marc's solution is **much** better than mine.
-- Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along
and sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )
On Wed, Aug 2, 2017 at 5:59 PM, Bert Gunter <bgunter.4567 at gmail.com> wrote:
> ... Or if you just want to stick with
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
>