Skip to content
Snippets Groups Projects
Commit 99bfaed2 authored by richard beer's avatar richard beer
Browse files

Anpassung für die Sortierung von Emails

parent 31c8160c
No related branches found
No related tags found
No related merge requests found
......@@ -31,7 +31,8 @@ suppressMessages({
library(readxl)
library(writexl)
library(tidyverse)
library(lubridate)
source("./function_load.R")
source("./download_get_key.R")
......@@ -180,5 +181,16 @@ cleaned_df$remindercount <- "0"
cleaned_df$completed <- "N"
cleaned_df$usesleft <- "1"
#sort at the beginning of the dataframe
list_for_email_sort <- c("Niki2007dc@gmx.com","Nadine.Glaser97@web.de","Jasmin.kroeber@gmx.de")
for (element in list_for_email_sort){
specific_rows <- cleaned_df[cleaned_df$email == element, ]
cleaned_df <- cleaned_df[cleaned_df$email != element, ]
cleaned_df <- rbind(specific_rows, cleaned_df)
}
# after cleaning . start with the user query ####
function_start()
\ No newline at end of file
function_start()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment