Displaying 3 results from an estimated 3 matches for "toextract".
2023 Mar 31
1
Extraer texto de una columna en Excel
...excellence.es>
wrote:
> Hola,
>
> Como no sé lo que querías, veo dos alternativas...
> Yo suelo usar "stringi" en vez de "stringr"
>
> #-----------------
> library(readxl)
> library(stringi)
> datos <- read_excel("Agrologia.xlsx")
> toextract <- unlist(stri_extract_all_fixed(datos$CARACTERIS, "textura"))
>
> #--- Si quiero un dataframe completo donde CARACTERIS tenga "textura" o
> "texturas"
> lineas_textura <- datos[ !is.na(toextract), ]
> #--- Si quiero los elementos de CARACTERIS que...
2023 Mar 31
1
Extraer texto de una columna en Excel
...>>
>> Como no sé lo que querías, veo dos alternativas...
>> Yo suelo usar "stringi" en vez de "stringr"
>>
>> #-----------------
>> library(readxl)
>> library(stringi)
>> datos <- read_excel("Agrologia.xlsx")
>> toextract <- unlist(stri_extract_all_fixed(datos$CARACTERIS, "textura"))
>>
>> #--- Si quiero un dataframe completo donde CARACTERIS tenga "textura" o
>> "texturas"
>> lineas_textura <- datos[ !is.na(toextract), ]
>> #--- Si quiero los element...
2011 Nov 18
1
extract positions from matrix
...35 40
[2,] 31 36 41
[3,] 32 37 42
[4,] 33 38 43
[5,] 34 39 44
The positions I wish to extract are 1 and 5 of the first row of each
matrix (in my case are 25positions) and with this generate a new matrix
with the form
d=
[,1] [,2] [,3]
[1,] 1 15 30
[2,] 5 19 34
The ideais to builda loop toextract thisinformation from
hundredsmatrices, butI failed todo so.
Any helpwould be greatthank you very muchin advance
regards
.jpg
[[alternative HTML version deleted]]