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
Compare revisions
ba87a650db0c90f2afe3d0c27dc03beccc4c08d2 to 9f04677a3fcac074c25cdc13e83d9f850d314186
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
imebi/limesurvey/tokenaufbereiter
Select target project
No results found
9f04677a3fcac074c25cdc13e83d9f850d314186
Select Git revision
Branches
main
Swap
Target
imebi/limesurvey/tokenaufbereiter
Select target project
imebi/limesurvey/tokenaufbereiter
1 result
ba87a650db0c90f2afe3d0c27dc03beccc4c08d2
Select Git revision
Branches
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
Anleitung hinzugefügt
· 39762542
richard beer
authored
10 months ago
39762542
gitignore erweitert
· 9aa11405
richard beer
authored
10 months ago
9aa11405
Datein werden jetzt als csv gespeichert und nicht als xlsx
· 9f04677a
richard beer
authored
10 months ago
9f04677a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
Anleitung_Tokenaufbereiter.pdf
+0
-0
0 additions, 0 deletions
Anleitung_Tokenaufbereiter.pdf
function_load.R
+4
-4
4 additions, 4 deletions
function_load.R
with
6 additions
and
4 deletions
.gitignore
View file @
9f04677a
username.txt
password.txt
*.xlsx
*.csv
.Rhistory
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Anleitung_Tokenaufbereiter.pdf
0 → 100644
View file @
9f04677a
File added
This diff is collapsed.
Click to expand it.
function_load.R
View file @
9f04677a
...
...
@@ -133,7 +133,7 @@ function_Tokenaufbereiter_alle_TN <- function() {
#save the file
#setwd("H:/01_Limesurvey_TokenVergleich")
write
_xlsx
(
combined_token_with_download
,
paste0
(
"./Umfrageteilnehmertabelle_"
,
format
(
Sys.Date
(),
"%Y_%m_%d"
),
"_alle_TN.
xlsx"
)
)
write
.csv
(
combined_token_with_download
,
paste0
(
"./Umfrageteilnehmertabelle_"
,
format
(
Sys.Date
(),
"%Y_%m_%d"
),
"_alle_TN.
csv"
),
row.names
=
F
)
function_end
()
...
...
@@ -182,7 +182,7 @@ function_Tokenaufbereiter_Newsletter <- function() {
#save the file
#setwd("H:/01_Limesurvey_TokenVergleich")
write
_xlsx
(
combined_token_with_download
,
paste0
(
"./Umfrageteilnehmertabelle_"
,
format
(
Sys.Date
(),
"%Y_%m_%d"
),
"_Newsletter.
xlsx"
)
)
write
.csv
(
combined_token_with_download
,
paste0
(
"./Umfrageteilnehmertabelle_"
,
format
(
Sys.Date
(),
"%Y_%m_%d"
),
"_Newsletter.
csv"
),
row.names
=
F
)
function_end
()
...
...
@@ -244,7 +244,7 @@ function_Tokenaufbereiter_MIT_HHID_als_firstname <- function() {
#save the file
#setwd("H:/01_Limesurvey_TokenVergleich")
write
_xlsx
(
combined_token_with_download
,
paste0
(
"./Umfrageteilnehmertabelle_"
,
format
(
Sys.Date
(),
"%Y_%m_%d"
),
"_mit_HHID_as_firstname.
xlsx"
)
)
write
.csv
(
combined_token_with_download
,
paste0
(
"./Umfrageteilnehmertabelle_"
,
format
(
Sys.Date
(),
"%Y_%m_%d"
),
"_mit_HHID_as_firstname.
csv"
),
row.names
=
F
)
function_end
()
...
...
@@ -292,7 +292,7 @@ function_Tokenaufbereiter_OHNE_HHID <- function() {
#save the file
setwd
(
"H:/01_Limesurvey_TokenVergleich"
)
write
_xlsx
(
combined_token_with_download
,
paste0
(
"./Umfrageteilnehmertabelle_"
,
format
(
Sys.Date
(),
"%Y_%m_%d"
),
"_ohne_HHID.
xlsx"
)
)
write
.csv
(
combined_token_with_download
,
paste0
(
"./Umfrageteilnehmertabelle_"
,
format
(
Sys.Date
(),
"%Y_%m_%d"
),
"_ohne_HHID.
csv"
),
row.names
=
F
)
function_end
()
...
...
This diff is collapsed.
Click to expand it.