Replacing some elements in a variable
I have a txt file format. I have some problems about reading and replacing this file.
When I use:
mrk <- read.table("mrk.txt", skip = 1, colClasses = c("numeric","character") )
str(mrk)
'data.frame': 1550 obs. of 2 variables:
$ V1: num 22079 21553 ...
$ V2: chr "0244004434040323042220022240040200322344300043202322322202240023434432420023002200223430420004344023" "0233402242030024022334032220030340022023000034202422423202230024303343223344320303440204030303032323"
My problems are:
1- mrk$ V2 is character. It should be as numeric and similar to string.
2- I should replace 3 and 4 to 1:
mrk$V2[mrk$V2=="3"]<-"1"
mrk$V2[mrk$V2=="4"]<-"1"
It does not work. Can you help me?
r string replace numeric
add a comment |
I have a txt file format. I have some problems about reading and replacing this file.
When I use:
mrk <- read.table("mrk.txt", skip = 1, colClasses = c("numeric","character") )
str(mrk)
'data.frame': 1550 obs. of 2 variables:
$ V1: num 22079 21553 ...
$ V2: chr "0244004434040323042220022240040200322344300043202322322202240023434432420023002200223430420004344023" "0233402242030024022334032220030340022023000034202422423202230024303343223344320303440204030303032323"
My problems are:
1- mrk$ V2 is character. It should be as numeric and similar to string.
2- I should replace 3 and 4 to 1:
mrk$V2[mrk$V2=="3"]<-"1"
mrk$V2[mrk$V2=="4"]<-"1"
It does not work. Can you help me?
r string replace numeric
add a comment |
I have a txt file format. I have some problems about reading and replacing this file.
When I use:
mrk <- read.table("mrk.txt", skip = 1, colClasses = c("numeric","character") )
str(mrk)
'data.frame': 1550 obs. of 2 variables:
$ V1: num 22079 21553 ...
$ V2: chr "0244004434040323042220022240040200322344300043202322322202240023434432420023002200223430420004344023" "0233402242030024022334032220030340022023000034202422423202230024303343223344320303440204030303032323"
My problems are:
1- mrk$ V2 is character. It should be as numeric and similar to string.
2- I should replace 3 and 4 to 1:
mrk$V2[mrk$V2=="3"]<-"1"
mrk$V2[mrk$V2=="4"]<-"1"
It does not work. Can you help me?
r string replace numeric
I have a txt file format. I have some problems about reading and replacing this file.
When I use:
mrk <- read.table("mrk.txt", skip = 1, colClasses = c("numeric","character") )
str(mrk)
'data.frame': 1550 obs. of 2 variables:
$ V1: num 22079 21553 ...
$ V2: chr "0244004434040323042220022240040200322344300043202322322202240023434432420023002200223430420004344023" "0233402242030024022334032220030340022023000034202422423202230024303343223344320303440204030303032323"
My problems are:
1- mrk$ V2 is character. It should be as numeric and similar to string.
2- I should replace 3 and 4 to 1:
mrk$V2[mrk$V2=="3"]<-"1"
mrk$V2[mrk$V2=="4"]<-"1"
It does not work. Can you help me?
r string replace numeric
r string replace numeric
edited Nov 18 '18 at 12:14
markus
11.3k1132
11.3k1132
asked Nov 18 '18 at 12:10
fatemefateme
52
52
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Use gsub
for the replacment
V2 <- c("0244004434040323042220022240040200322344300043202322322202240023434432420023002200223430420004344023",
"0233402242030024022334032220030340022023000034202422423202230024303343223344320303440204030303032323")
V2 <- gsub("[3|4]", "1", V2)
as.numeric(V2)
#[1] 2.110011e+98 2.111022e+98
But you might consider to change the argument colClasses
from c("numeric", "character")
to c("numeric", "numeric")
. when reading your data into R.
1
Thank you kindly.
– fateme
Nov 18 '18 at 12:41
add a comment |
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%2f53360704%2freplacing-some-elements-in-a-variable%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Use gsub
for the replacment
V2 <- c("0244004434040323042220022240040200322344300043202322322202240023434432420023002200223430420004344023",
"0233402242030024022334032220030340022023000034202422423202230024303343223344320303440204030303032323")
V2 <- gsub("[3|4]", "1", V2)
as.numeric(V2)
#[1] 2.110011e+98 2.111022e+98
But you might consider to change the argument colClasses
from c("numeric", "character")
to c("numeric", "numeric")
. when reading your data into R.
1
Thank you kindly.
– fateme
Nov 18 '18 at 12:41
add a comment |
Use gsub
for the replacment
V2 <- c("0244004434040323042220022240040200322344300043202322322202240023434432420023002200223430420004344023",
"0233402242030024022334032220030340022023000034202422423202230024303343223344320303440204030303032323")
V2 <- gsub("[3|4]", "1", V2)
as.numeric(V2)
#[1] 2.110011e+98 2.111022e+98
But you might consider to change the argument colClasses
from c("numeric", "character")
to c("numeric", "numeric")
. when reading your data into R.
1
Thank you kindly.
– fateme
Nov 18 '18 at 12:41
add a comment |
Use gsub
for the replacment
V2 <- c("0244004434040323042220022240040200322344300043202322322202240023434432420023002200223430420004344023",
"0233402242030024022334032220030340022023000034202422423202230024303343223344320303440204030303032323")
V2 <- gsub("[3|4]", "1", V2)
as.numeric(V2)
#[1] 2.110011e+98 2.111022e+98
But you might consider to change the argument colClasses
from c("numeric", "character")
to c("numeric", "numeric")
. when reading your data into R.
Use gsub
for the replacment
V2 <- c("0244004434040323042220022240040200322344300043202322322202240023434432420023002200223430420004344023",
"0233402242030024022334032220030340022023000034202422423202230024303343223344320303440204030303032323")
V2 <- gsub("[3|4]", "1", V2)
as.numeric(V2)
#[1] 2.110011e+98 2.111022e+98
But you might consider to change the argument colClasses
from c("numeric", "character")
to c("numeric", "numeric")
. when reading your data into R.
answered Nov 18 '18 at 12:19
markusmarkus
11.3k1132
11.3k1132
1
Thank you kindly.
– fateme
Nov 18 '18 at 12:41
add a comment |
1
Thank you kindly.
– fateme
Nov 18 '18 at 12:41
1
1
Thank you kindly.
– fateme
Nov 18 '18 at 12:41
Thank you kindly.
– fateme
Nov 18 '18 at 12:41
add a comment |
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%2f53360704%2freplacing-some-elements-in-a-variable%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