r remove row dataframe

# Assuming 'your_dataframe' is the name of your dataframe
# Assuming 'row_index_to_remove' is the index of the row you want to remove

your_dataframe <- your_dataframe[-row_index_to_remove, , drop = FALSE]