I have a Data Frame called "Data" which looks like this:
Jobs Agency Location Date RXH HS TMM Payed
6 RWC Heineken Lightblue EGC 2015-10-10 90 8.5 765 FALSE
31 Playstation Lightblue Mirdiff CC 2015-11-13 90 7.0 630 FALSE
26 I.D Heineken Lightblue Irish Village 2015-11-06 90 8.0 720 FALSE
35 Bank of America Allure Raffles 2015-11-17 100 3.0 300 FALSE
15 Netapp Gitex F1 Events House DWTC 2015-10-20 100 8.0 800 TRUE
I want to change all items in Data$Payed where Data$Jobs == "RWC Heineken"
to TRUE
.
I could change it manually using fix(Data)
but it would take me a few minutes as I need to change several of them.
I'm looking for a code that would do this automatically.