How to add a new column in data frame by dividing values in an existing column, specifically, in the same...
I want to use the mutate
function to create a new column.
I can't figure out how to do it because the values in the new column are to be quotients of values from another column in my data frame.
Usually when I've used mutate
before the values were in different columns like mutate(newcolumn = colX_values / colY_values)
but this time, both parts of the equation are in the same column. The main difference is that I want the female values to be divided by the male values.
```{r}
library(tidyverse)
library(ggplot2)
library(readxl)
```
```{r}
race = c("all", "all", "black", "black")
earnings = c(74467, 57202, 44725, 40974)
gender = c("male", "female", "male", "female")
work_status = c("FT", "FT", "FT", "FT")
data.frame(race, earnings, gender, work_status)
```
```{r}
earnings %>%
filter(work_status == "FT")
```
I eventually want a 5th column that consists of the the female earnings / male earnings per each race. so for all the male rows there should be the number 1 in the new column and in all the female rows it should be the result of 57202/74467.
I am just not sure how to get that result.
r tidyverse mutate
add a comment |
I want to use the mutate
function to create a new column.
I can't figure out how to do it because the values in the new column are to be quotients of values from another column in my data frame.
Usually when I've used mutate
before the values were in different columns like mutate(newcolumn = colX_values / colY_values)
but this time, both parts of the equation are in the same column. The main difference is that I want the female values to be divided by the male values.
```{r}
library(tidyverse)
library(ggplot2)
library(readxl)
```
```{r}
race = c("all", "all", "black", "black")
earnings = c(74467, 57202, 44725, 40974)
gender = c("male", "female", "male", "female")
work_status = c("FT", "FT", "FT", "FT")
data.frame(race, earnings, gender, work_status)
```
```{r}
earnings %>%
filter(work_status == "FT")
```
I eventually want a 5th column that consists of the the female earnings / male earnings per each race. so for all the male rows there should be the number 1 in the new column and in all the female rows it should be the result of 57202/74467.
I am just not sure how to get that result.
r tidyverse mutate
Sorry please disregard the filtering.
– Josephine Ankrah
Dec 31 '18 at 21:43
1
hmmm, so I created a new column using `mutate(new_earnings = c("74467", "74467", "44725", "44725")). and now I plan to just divide that way. I am still curious if there is a more direct way to go about solving this.
– Josephine Ankrah
Dec 31 '18 at 21:50
add a comment |
I want to use the mutate
function to create a new column.
I can't figure out how to do it because the values in the new column are to be quotients of values from another column in my data frame.
Usually when I've used mutate
before the values were in different columns like mutate(newcolumn = colX_values / colY_values)
but this time, both parts of the equation are in the same column. The main difference is that I want the female values to be divided by the male values.
```{r}
library(tidyverse)
library(ggplot2)
library(readxl)
```
```{r}
race = c("all", "all", "black", "black")
earnings = c(74467, 57202, 44725, 40974)
gender = c("male", "female", "male", "female")
work_status = c("FT", "FT", "FT", "FT")
data.frame(race, earnings, gender, work_status)
```
```{r}
earnings %>%
filter(work_status == "FT")
```
I eventually want a 5th column that consists of the the female earnings / male earnings per each race. so for all the male rows there should be the number 1 in the new column and in all the female rows it should be the result of 57202/74467.
I am just not sure how to get that result.
r tidyverse mutate
I want to use the mutate
function to create a new column.
I can't figure out how to do it because the values in the new column are to be quotients of values from another column in my data frame.
Usually when I've used mutate
before the values were in different columns like mutate(newcolumn = colX_values / colY_values)
but this time, both parts of the equation are in the same column. The main difference is that I want the female values to be divided by the male values.
```{r}
library(tidyverse)
library(ggplot2)
library(readxl)
```
```{r}
race = c("all", "all", "black", "black")
earnings = c(74467, 57202, 44725, 40974)
gender = c("male", "female", "male", "female")
work_status = c("FT", "FT", "FT", "FT")
data.frame(race, earnings, gender, work_status)
```
```{r}
earnings %>%
filter(work_status == "FT")
```
I eventually want a 5th column that consists of the the female earnings / male earnings per each race. so for all the male rows there should be the number 1 in the new column and in all the female rows it should be the result of 57202/74467.
I am just not sure how to get that result.
r tidyverse mutate
r tidyverse mutate
edited Jan 2 at 8:14
NelsonGon
3,2803832
3,2803832
asked Dec 31 '18 at 21:41


Josephine AnkrahJosephine Ankrah
103
103
Sorry please disregard the filtering.
– Josephine Ankrah
Dec 31 '18 at 21:43
1
hmmm, so I created a new column using `mutate(new_earnings = c("74467", "74467", "44725", "44725")). and now I plan to just divide that way. I am still curious if there is a more direct way to go about solving this.
– Josephine Ankrah
Dec 31 '18 at 21:50
add a comment |
Sorry please disregard the filtering.
– Josephine Ankrah
Dec 31 '18 at 21:43
1
hmmm, so I created a new column using `mutate(new_earnings = c("74467", "74467", "44725", "44725")). and now I plan to just divide that way. I am still curious if there is a more direct way to go about solving this.
– Josephine Ankrah
Dec 31 '18 at 21:50
Sorry please disregard the filtering.
– Josephine Ankrah
Dec 31 '18 at 21:43
Sorry please disregard the filtering.
– Josephine Ankrah
Dec 31 '18 at 21:43
1
1
hmmm, so I created a new column using `mutate(new_earnings = c("74467", "74467", "44725", "44725")). and now I plan to just divide that way. I am still curious if there is a more direct way to go about solving this.
– Josephine Ankrah
Dec 31 '18 at 21:50
hmmm, so I created a new column using `mutate(new_earnings = c("74467", "74467", "44725", "44725")). and now I plan to just divide that way. I am still curious if there is a more direct way to go about solving this.
– Josephine Ankrah
Dec 31 '18 at 21:50
add a comment |
1 Answer
1
active
oldest
votes
Is this what you're looking for?
df %>%
spread(gender,earnings) %>%
mutate(Ratio=female/male)
Output:
race work_status female male Ratio
1 all FT 57202 74467 0.7681523
2 black FT 40974 44725 0.9161319
1
yes! exactly. thank you very much.
– Josephine Ankrah
Jan 2 at 15:38
Glad it helped. Cheers!
– NelsonGon
Jan 2 at 15:43
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%2f53991631%2fhow-to-add-a-new-column-in-data-frame-by-dividing-values-in-an-existing-column%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
Is this what you're looking for?
df %>%
spread(gender,earnings) %>%
mutate(Ratio=female/male)
Output:
race work_status female male Ratio
1 all FT 57202 74467 0.7681523
2 black FT 40974 44725 0.9161319
1
yes! exactly. thank you very much.
– Josephine Ankrah
Jan 2 at 15:38
Glad it helped. Cheers!
– NelsonGon
Jan 2 at 15:43
add a comment |
Is this what you're looking for?
df %>%
spread(gender,earnings) %>%
mutate(Ratio=female/male)
Output:
race work_status female male Ratio
1 all FT 57202 74467 0.7681523
2 black FT 40974 44725 0.9161319
1
yes! exactly. thank you very much.
– Josephine Ankrah
Jan 2 at 15:38
Glad it helped. Cheers!
– NelsonGon
Jan 2 at 15:43
add a comment |
Is this what you're looking for?
df %>%
spread(gender,earnings) %>%
mutate(Ratio=female/male)
Output:
race work_status female male Ratio
1 all FT 57202 74467 0.7681523
2 black FT 40974 44725 0.9161319
Is this what you're looking for?
df %>%
spread(gender,earnings) %>%
mutate(Ratio=female/male)
Output:
race work_status female male Ratio
1 all FT 57202 74467 0.7681523
2 black FT 40974 44725 0.9161319
answered Jan 1 at 23:54
NelsonGonNelsonGon
3,2803832
3,2803832
1
yes! exactly. thank you very much.
– Josephine Ankrah
Jan 2 at 15:38
Glad it helped. Cheers!
– NelsonGon
Jan 2 at 15:43
add a comment |
1
yes! exactly. thank you very much.
– Josephine Ankrah
Jan 2 at 15:38
Glad it helped. Cheers!
– NelsonGon
Jan 2 at 15:43
1
1
yes! exactly. thank you very much.
– Josephine Ankrah
Jan 2 at 15:38
yes! exactly. thank you very much.
– Josephine Ankrah
Jan 2 at 15:38
Glad it helped. Cheers!
– NelsonGon
Jan 2 at 15:43
Glad it helped. Cheers!
– NelsonGon
Jan 2 at 15:43
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%2f53991631%2fhow-to-add-a-new-column-in-data-frame-by-dividing-values-in-an-existing-column%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
Sorry please disregard the filtering.
– Josephine Ankrah
Dec 31 '18 at 21:43
1
hmmm, so I created a new column using `mutate(new_earnings = c("74467", "74467", "44725", "44725")). and now I plan to just divide that way. I am still curious if there is a more direct way to go about solving this.
– Josephine Ankrah
Dec 31 '18 at 21:50