Changing locale inside package function
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I have a function which resides inside a package, assume the function is called foo()
. I want it to read an Excel file with Greek letters, so I change the locale to Greek. After reading in the datafile I do something with this data and the Greek characters and after that I want the locale changed back to the default value.
foo <- function(file, sheet)σ
Looks great... But it does not work when the code resides inside the foo
function. The columns containing Greek characters are not returned correctly. Running the code just like this
Sys.setlocale(category = "LC_ALL", locale = "Greek")
data <- read.xlsx("file.xlsx", sheet = "data")
cols_greek <- names(data)[which(apply(data, 2, function(x) grepl("α|β|σ|ε|γ|π|δ|θ|λ|χ|μ|°", x)), arr.ind = TRUE)[,2]]
cols_greek <- cols_greek[!duplicated(cols_greek)]
Sys.setlocale()
cols_greek
works perfectly fine and the right column names are returned. Can anyone tell me why that is?
Any help would be greatly appreciated.
r function locale
add a comment |
I have a function which resides inside a package, assume the function is called foo()
. I want it to read an Excel file with Greek letters, so I change the locale to Greek. After reading in the datafile I do something with this data and the Greek characters and after that I want the locale changed back to the default value.
foo <- function(file, sheet)σ
Looks great... But it does not work when the code resides inside the foo
function. The columns containing Greek characters are not returned correctly. Running the code just like this
Sys.setlocale(category = "LC_ALL", locale = "Greek")
data <- read.xlsx("file.xlsx", sheet = "data")
cols_greek <- names(data)[which(apply(data, 2, function(x) grepl("α|β|σ|ε|γ|π|δ|θ|λ|χ|μ|°", x)), arr.ind = TRUE)[,2]]
cols_greek <- cols_greek[!duplicated(cols_greek)]
Sys.setlocale()
cols_greek
works perfectly fine and the right column names are returned. Can anyone tell me why that is?
Any help would be greatly appreciated.
r function locale
What exactly does "does not work" mean? Are you getting an error? Your functionfoo()
doesn't seem to be returning thedata
value anywhere. Also look at theon.exit()
function for resetting the locale on function exit.
– MrFlick
Nov 13 '18 at 16:10
Does not work means the data is read in using the default locale, and not the Greek locale. After reading in the data I count the Greek characters and I return the counts from the function. This is just a plain example.
– Veerle
Nov 14 '18 at 9:10
I adjusted my question a bit to make it more clear as why I want to do this.
– Veerle
Nov 14 '18 at 9:13
add a comment |
I have a function which resides inside a package, assume the function is called foo()
. I want it to read an Excel file with Greek letters, so I change the locale to Greek. After reading in the datafile I do something with this data and the Greek characters and after that I want the locale changed back to the default value.
foo <- function(file, sheet)σ
Looks great... But it does not work when the code resides inside the foo
function. The columns containing Greek characters are not returned correctly. Running the code just like this
Sys.setlocale(category = "LC_ALL", locale = "Greek")
data <- read.xlsx("file.xlsx", sheet = "data")
cols_greek <- names(data)[which(apply(data, 2, function(x) grepl("α|β|σ|ε|γ|π|δ|θ|λ|χ|μ|°", x)), arr.ind = TRUE)[,2]]
cols_greek <- cols_greek[!duplicated(cols_greek)]
Sys.setlocale()
cols_greek
works perfectly fine and the right column names are returned. Can anyone tell me why that is?
Any help would be greatly appreciated.
r function locale
I have a function which resides inside a package, assume the function is called foo()
. I want it to read an Excel file with Greek letters, so I change the locale to Greek. After reading in the datafile I do something with this data and the Greek characters and after that I want the locale changed back to the default value.
foo <- function(file, sheet)σ
Looks great... But it does not work when the code resides inside the foo
function. The columns containing Greek characters are not returned correctly. Running the code just like this
Sys.setlocale(category = "LC_ALL", locale = "Greek")
data <- read.xlsx("file.xlsx", sheet = "data")
cols_greek <- names(data)[which(apply(data, 2, function(x) grepl("α|β|σ|ε|γ|π|δ|θ|λ|χ|μ|°", x)), arr.ind = TRUE)[,2]]
cols_greek <- cols_greek[!duplicated(cols_greek)]
Sys.setlocale()
cols_greek
works perfectly fine and the right column names are returned. Can anyone tell me why that is?
Any help would be greatly appreciated.
r function locale
r function locale
edited Nov 14 '18 at 9:13
Veerle
asked Nov 13 '18 at 15:24
VeerleVeerle
234
234
What exactly does "does not work" mean? Are you getting an error? Your functionfoo()
doesn't seem to be returning thedata
value anywhere. Also look at theon.exit()
function for resetting the locale on function exit.
– MrFlick
Nov 13 '18 at 16:10
Does not work means the data is read in using the default locale, and not the Greek locale. After reading in the data I count the Greek characters and I return the counts from the function. This is just a plain example.
– Veerle
Nov 14 '18 at 9:10
I adjusted my question a bit to make it more clear as why I want to do this.
– Veerle
Nov 14 '18 at 9:13
add a comment |
What exactly does "does not work" mean? Are you getting an error? Your functionfoo()
doesn't seem to be returning thedata
value anywhere. Also look at theon.exit()
function for resetting the locale on function exit.
– MrFlick
Nov 13 '18 at 16:10
Does not work means the data is read in using the default locale, and not the Greek locale. After reading in the data I count the Greek characters and I return the counts from the function. This is just a plain example.
– Veerle
Nov 14 '18 at 9:10
I adjusted my question a bit to make it more clear as why I want to do this.
– Veerle
Nov 14 '18 at 9:13
What exactly does "does not work" mean? Are you getting an error? Your function
foo()
doesn't seem to be returning the data
value anywhere. Also look at the on.exit()
function for resetting the locale on function exit.– MrFlick
Nov 13 '18 at 16:10
What exactly does "does not work" mean? Are you getting an error? Your function
foo()
doesn't seem to be returning the data
value anywhere. Also look at the on.exit()
function for resetting the locale on function exit.– MrFlick
Nov 13 '18 at 16:10
Does not work means the data is read in using the default locale, and not the Greek locale. After reading in the data I count the Greek characters and I return the counts from the function. This is just a plain example.
– Veerle
Nov 14 '18 at 9:10
Does not work means the data is read in using the default locale, and not the Greek locale. After reading in the data I count the Greek characters and I return the counts from the function. This is just a plain example.
– Veerle
Nov 14 '18 at 9:10
I adjusted my question a bit to make it more clear as why I want to do this.
– Veerle
Nov 14 '18 at 9:13
I adjusted my question a bit to make it more clear as why I want to do this.
– Veerle
Nov 14 '18 at 9:13
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53284222%2fchanging-locale-inside-package-function%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53284222%2fchanging-locale-inside-package-function%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What exactly does "does not work" mean? Are you getting an error? Your function
foo()
doesn't seem to be returning thedata
value anywhere. Also look at theon.exit()
function for resetting the locale on function exit.– MrFlick
Nov 13 '18 at 16:10
Does not work means the data is read in using the default locale, and not the Greek locale. After reading in the data I count the Greek characters and I return the counts from the function. This is just a plain example.
– Veerle
Nov 14 '18 at 9:10
I adjusted my question a bit to make it more clear as why I want to do this.
– Veerle
Nov 14 '18 at 9:13