Question: Can you explain the #your code please? I really don't understand how does it work out like that and moreover, I already coppy and paste
Can you explain the #your code please? I really don't understand how does it work out like that and moreover, I already coppy and paste this code on my R markdown program but I can't run it.

create a data frame male_female by filtering the data with Male and Female abalones, and display its dimensions with dim( ) {r } # your code #fil = filter (abalone, (str_detect (sex, 'F' ) | str_detect(sex, 'M' ) ) ) #male_female % group_by (sex) #male_female %% fil #male_female - create a data frame ringsi by filtering the data with those abalones having 25 Rings or more, containing columns about their sex, and rings (in that order) . Crop one question at a time # your code rings1 % filter (rings > 25) rings1 % select (sex, rings) rings1 - create a data frame rings2 by filter the data with those infant abalones with more than 3 Rings and less than 6, containing columns sex, rings, and diameter, with rows arranged by diameter in increasing order
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
