5
I imported my data that was in a spreadsheet from Excel to the R, by placing them in a variable called umParticipante.
However, when I make the following code:
umParticipante.nome <- umParticipante[5,1]
print(umParticipante.nome)
Him printa:
# A tibble: 1 x 1
..1
<chr>
1 Subject name: fulano
But I wish that umParticipante.nome were left with only the string corresponding to the name of the participant. In this case, I would like the code print(umParticipante.nome) return fulano.
How can I do that?