I have a data frame having 1000 rows.I can use fix command or edit command in R to view and edit the data manually.I can't find any difference between the two. I want to know which is the efficient way of editing the data manually? Help me out in the same...
fix()
invokes edit on x and then assigns the new version to the same object.
Example:
fix(my_dataFrame) #now my_dataFrame is changed
In edit()
- we need to assign it to an object
my_new_dataFrame = edit(my_dataFrame)
You can read up on them - edit() and fix()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With