I am a beginner in R and now I got a question regarding the dataframe which I am working with.
I have some columns with several answers from a survey. Below are two columns:
OperatingSystem LanguageWorkedWith
Linux C;C++;C#
Windows Java; JavaScript
Mac C
Linux C#
And need to break it down into separated rows acconding to the OperatingSystem (also in 2 columns: OperatingSystem and LanguageWorkedWith):
Linux C
Linux C++
and so on... Sorry if the question is duplicated, I just couldn't find a solution for that.