How can i calculate the mean x of a percentage y?
How can i calculate the mean x of a percentage y?
I have two data frames, one has the information of the percentages and the other data frame has the information of flow. Therefore one has relative values and the other absolute values. I want to figure out, how high is the absolute value for the percentage.
For clearification, my first df describes the occupancy of cars on different links at certain time intervals (2h every 90sec). The other data frame gives information about the flow of cars (veh/h also 2h for every 90sec). I want to show the average relation between the two in a scatterplot in a second step.
Unfortunately, the df's are both huge and i dont know how to upload them here. Currently my columns have the time (90sec, 180 sec etc.) and the rows are the different links (1570 different ones). Both dataframes have the same order. Im not sure how I can merge them in a helpful way.
Your help is highly appreciated!
r dataframe percentage traffic
add a comment |
How can i calculate the mean x of a percentage y?
I have two data frames, one has the information of the percentages and the other data frame has the information of flow. Therefore one has relative values and the other absolute values. I want to figure out, how high is the absolute value for the percentage.
For clearification, my first df describes the occupancy of cars on different links at certain time intervals (2h every 90sec). The other data frame gives information about the flow of cars (veh/h also 2h for every 90sec). I want to show the average relation between the two in a scatterplot in a second step.
Unfortunately, the df's are both huge and i dont know how to upload them here. Currently my columns have the time (90sec, 180 sec etc.) and the rows are the different links (1570 different ones). Both dataframes have the same order. Im not sure how I can merge them in a helpful way.
Your help is highly appreciated!
r dataframe percentage traffic
Please provide a sample of your data set so that we can replicate your issue. You can usehead(foo)
, for example, to produce the first few rows of your data frame.
– Yehuda
Nov 25 '18 at 16:25
add a comment |
How can i calculate the mean x of a percentage y?
I have two data frames, one has the information of the percentages and the other data frame has the information of flow. Therefore one has relative values and the other absolute values. I want to figure out, how high is the absolute value for the percentage.
For clearification, my first df describes the occupancy of cars on different links at certain time intervals (2h every 90sec). The other data frame gives information about the flow of cars (veh/h also 2h for every 90sec). I want to show the average relation between the two in a scatterplot in a second step.
Unfortunately, the df's are both huge and i dont know how to upload them here. Currently my columns have the time (90sec, 180 sec etc.) and the rows are the different links (1570 different ones). Both dataframes have the same order. Im not sure how I can merge them in a helpful way.
Your help is highly appreciated!
r dataframe percentage traffic
How can i calculate the mean x of a percentage y?
I have two data frames, one has the information of the percentages and the other data frame has the information of flow. Therefore one has relative values and the other absolute values. I want to figure out, how high is the absolute value for the percentage.
For clearification, my first df describes the occupancy of cars on different links at certain time intervals (2h every 90sec). The other data frame gives information about the flow of cars (veh/h also 2h for every 90sec). I want to show the average relation between the two in a scatterplot in a second step.
Unfortunately, the df's are both huge and i dont know how to upload them here. Currently my columns have the time (90sec, 180 sec etc.) and the rows are the different links (1570 different ones). Both dataframes have the same order. Im not sure how I can merge them in a helpful way.
Your help is highly appreciated!
r dataframe percentage traffic
r dataframe percentage traffic
asked Nov 25 '18 at 15:29
Yves RYves R
112
112
Please provide a sample of your data set so that we can replicate your issue. You can usehead(foo)
, for example, to produce the first few rows of your data frame.
– Yehuda
Nov 25 '18 at 16:25
add a comment |
Please provide a sample of your data set so that we can replicate your issue. You can usehead(foo)
, for example, to produce the first few rows of your data frame.
– Yehuda
Nov 25 '18 at 16:25
Please provide a sample of your data set so that we can replicate your issue. You can use
head(foo)
, for example, to produce the first few rows of your data frame.– Yehuda
Nov 25 '18 at 16:25
Please provide a sample of your data set so that we can replicate your issue. You can use
head(foo)
, for example, to produce the first few rows of your data frame.– Yehuda
Nov 25 '18 at 16:25
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%2f53469008%2fhow-can-i-calculate-the-mean-x-of-a-percentage-y%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%2f53469008%2fhow-can-i-calculate-the-mean-x-of-a-percentage-y%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
Please provide a sample of your data set so that we can replicate your issue. You can use
head(foo)
, for example, to produce the first few rows of your data frame.– Yehuda
Nov 25 '18 at 16:25