How to add a new column in data frame by dividing values in an existing column, specifically, in the same...












0















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.










share|improve this question

























  • 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
















0















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.










share|improve this question

























  • 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














0












0








0








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.










share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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



















  • 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












1 Answer
1






active

oldest

votes


















0














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





share|improve this answer



















  • 1





    yes! exactly. thank you very much.

    – Josephine Ankrah
    Jan 2 at 15:38











  • Glad it helped. Cheers!

    – NelsonGon
    Jan 2 at 15:43











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
});


}
});














draft saved

draft discarded


















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









0














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





share|improve this answer



















  • 1





    yes! exactly. thank you very much.

    – Josephine Ankrah
    Jan 2 at 15:38











  • Glad it helped. Cheers!

    – NelsonGon
    Jan 2 at 15:43
















0














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





share|improve this answer



















  • 1





    yes! exactly. thank you very much.

    – Josephine Ankrah
    Jan 2 at 15:38











  • Glad it helped. Cheers!

    – NelsonGon
    Jan 2 at 15:43














0












0








0







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





share|improve this answer













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






share|improve this answer












share|improve this answer



share|improve this answer










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














  • 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




















draft saved

draft discarded




















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter