python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to create a column with number of elements in list after applying splitlines() to another column?
I have a dataframe:
col1
upload main/\then delete/\
for once
upload main/\then delete/\copy/\
I want to create new column with number of elements after applying splitlines() function to this column. ...
Ir8_mind
Votes: 0
Answers: 1
How to use separate_rows in tidverse when the sep is ;
I have a data frame whose one of the column has this data.
info1@domain.com; info2@domain.com; info3@domain.com
q= tibble("info1@domain.com; info2@domain.com; info3@domain.com")
sepa...
AJAY
Votes: 0
Answers: 2
Inserting colon with join function after splitting. PERL
my $fruit;
my $quantity = <STDIN>;
my $results = split(/,|:/,$quantity);
foreach my $result(@results){
my ($fruit_name, $value) = split("=", @result);
if($fruit_name == "...
Iv4nT
Votes: 0
Answers: 2
CSV - Split multiple-line cell into multiple cells
I’m currently doing some big data work. I have an issue in a .CSV where I need to split a multiple-line single-celled chunk of text, into individual cells. The below table shows the desired output. ...
CunnyFunt
Votes: 0
Answers: 2