Extraction table Excel from R

  • Extraction table Excel from R

    Posted by Fadil on 13 June 2024 at 20:23

    I struggling with this, please I want to extract this data in the Excel format from R. Can someone help me?

    Lap_conv %>% filter(Meth_chi == “Coelioscopie”)

    Emmanuel replied 1 year ago 2 Members · 1 Reply
  • 1 Reply
  • Emmanuel

    Member
    13 June 2024 at 20:35

    # Filter the data

    filtered_data <- data %>% filter(Meth_chi == “Coelioscopie”)

    # Write the filtered data to an Excel file

    write_xlsx(filtered_data, path = “filtered_coelioscopie.xlsx”)

Log in to reply.