Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tokenaufbereiter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IMEBI
LimeSurvey
tokenaufbereiter
Commits
99bfaed2
Commit
99bfaed2
authored
10 months ago
by
richard beer
Browse files
Options
Downloads
Patches
Plain Diff
Anpassung für die Sortierung von Emails
parent
31c8160c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
main.r
+14
-2
14 additions, 2 deletions
main.r
with
14 additions
and
2 deletions
main.r
+
14
−
2
View file @
99bfaed2
...
...
@@ -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
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment