How to predict unknown(hidden) value by incomplete value or partly recorded value
$begingroup$
Let me make it clear by make an example:
Suppose I knew a person's cost each month for 3 years like:
2016Jan : $2500
2016Feb : $4000
2016Mar : $3500
...
Just according to this, can I predict how much he earned each month in these years? If I could, what model should use? If I couldn't, what info I need to make this possible. If I couldn't guess in 100 percent but I could guess by some probability, what model should I use?
Another example:
Need to estimate how much each store sells in each city, however I could only got the sales when they record it in electric system, if they didn't record it in electric system(may use paper or something else); then I don't know, how can I get all sales, not just the sales record in electric system?
Any suggestion is welcomed
predictive-modeling prediction probability
$endgroup$
bumped to the homepage by Community♦ 14 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
$begingroup$
Let me make it clear by make an example:
Suppose I knew a person's cost each month for 3 years like:
2016Jan : $2500
2016Feb : $4000
2016Mar : $3500
...
Just according to this, can I predict how much he earned each month in these years? If I could, what model should use? If I couldn't, what info I need to make this possible. If I couldn't guess in 100 percent but I could guess by some probability, what model should I use?
Another example:
Need to estimate how much each store sells in each city, however I could only got the sales when they record it in electric system, if they didn't record it in electric system(may use paper or something else); then I don't know, how can I get all sales, not just the sales record in electric system?
Any suggestion is welcomed
predictive-modeling prediction probability
$endgroup$
bumped to the homepage by Community♦ 14 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
$begingroup$
Let me make it clear by make an example:
Suppose I knew a person's cost each month for 3 years like:
2016Jan : $2500
2016Feb : $4000
2016Mar : $3500
...
Just according to this, can I predict how much he earned each month in these years? If I could, what model should use? If I couldn't, what info I need to make this possible. If I couldn't guess in 100 percent but I could guess by some probability, what model should I use?
Another example:
Need to estimate how much each store sells in each city, however I could only got the sales when they record it in electric system, if they didn't record it in electric system(may use paper or something else); then I don't know, how can I get all sales, not just the sales record in electric system?
Any suggestion is welcomed
predictive-modeling prediction probability
$endgroup$
Let me make it clear by make an example:
Suppose I knew a person's cost each month for 3 years like:
2016Jan : $2500
2016Feb : $4000
2016Mar : $3500
...
Just according to this, can I predict how much he earned each month in these years? If I could, what model should use? If I couldn't, what info I need to make this possible. If I couldn't guess in 100 percent but I could guess by some probability, what model should I use?
Another example:
Need to estimate how much each store sells in each city, however I could only got the sales when they record it in electric system, if they didn't record it in electric system(may use paper or something else); then I don't know, how can I get all sales, not just the sales record in electric system?
Any suggestion is welcomed
predictive-modeling prediction probability
predictive-modeling prediction probability
asked Nov 14 '18 at 8:12
cloudscomputescloudscomputes
1063
1063
bumped to the homepage by Community♦ 14 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 14 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
Actually you can use almost any regression model. When you do not want to go too much into theory simply use a gaussian process provided by sklearn. This model gives you predictions and uncertainties.
$endgroup$
$begingroup$
Thanks for let me know the gaussian process by sklearn
$endgroup$
– cloudscomputes
Nov 14 '18 at 9:09
$begingroup$
According to my understanding these days, GP need a prior (x,y), to build on (x*,y*), however, in my case, I don't have any y, what I have is only x and x*, any further ideas?
$endgroup$
– cloudscomputes
Nov 16 '18 at 8:40
$begingroup$
You can use the month (jan., feb., etc..) as your $x$ and the income as your $y$. Afterwards you calculate for missing $x$ your corresponding $y$ with the gp.
$endgroup$
– Andreas Look
Nov 16 '18 at 8:49
$begingroup$
I don't have any income data, I only have person's living cost
$endgroup$
– cloudscomputes
Nov 19 '18 at 3:07
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "557"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2fdatascience.stackexchange.com%2fquestions%2f41196%2fhow-to-predict-unknownhidden-value-by-incomplete-value-or-partly-recorded-valu%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
$begingroup$
Actually you can use almost any regression model. When you do not want to go too much into theory simply use a gaussian process provided by sklearn. This model gives you predictions and uncertainties.
$endgroup$
$begingroup$
Thanks for let me know the gaussian process by sklearn
$endgroup$
– cloudscomputes
Nov 14 '18 at 9:09
$begingroup$
According to my understanding these days, GP need a prior (x,y), to build on (x*,y*), however, in my case, I don't have any y, what I have is only x and x*, any further ideas?
$endgroup$
– cloudscomputes
Nov 16 '18 at 8:40
$begingroup$
You can use the month (jan., feb., etc..) as your $x$ and the income as your $y$. Afterwards you calculate for missing $x$ your corresponding $y$ with the gp.
$endgroup$
– Andreas Look
Nov 16 '18 at 8:49
$begingroup$
I don't have any income data, I only have person's living cost
$endgroup$
– cloudscomputes
Nov 19 '18 at 3:07
add a comment |
$begingroup$
Actually you can use almost any regression model. When you do not want to go too much into theory simply use a gaussian process provided by sklearn. This model gives you predictions and uncertainties.
$endgroup$
$begingroup$
Thanks for let me know the gaussian process by sklearn
$endgroup$
– cloudscomputes
Nov 14 '18 at 9:09
$begingroup$
According to my understanding these days, GP need a prior (x,y), to build on (x*,y*), however, in my case, I don't have any y, what I have is only x and x*, any further ideas?
$endgroup$
– cloudscomputes
Nov 16 '18 at 8:40
$begingroup$
You can use the month (jan., feb., etc..) as your $x$ and the income as your $y$. Afterwards you calculate for missing $x$ your corresponding $y$ with the gp.
$endgroup$
– Andreas Look
Nov 16 '18 at 8:49
$begingroup$
I don't have any income data, I only have person's living cost
$endgroup$
– cloudscomputes
Nov 19 '18 at 3:07
add a comment |
$begingroup$
Actually you can use almost any regression model. When you do not want to go too much into theory simply use a gaussian process provided by sklearn. This model gives you predictions and uncertainties.
$endgroup$
Actually you can use almost any regression model. When you do not want to go too much into theory simply use a gaussian process provided by sklearn. This model gives you predictions and uncertainties.
edited Nov 14 '18 at 9:10
answered Nov 14 '18 at 8:43
Andreas LookAndreas Look
449111
449111
$begingroup$
Thanks for let me know the gaussian process by sklearn
$endgroup$
– cloudscomputes
Nov 14 '18 at 9:09
$begingroup$
According to my understanding these days, GP need a prior (x,y), to build on (x*,y*), however, in my case, I don't have any y, what I have is only x and x*, any further ideas?
$endgroup$
– cloudscomputes
Nov 16 '18 at 8:40
$begingroup$
You can use the month (jan., feb., etc..) as your $x$ and the income as your $y$. Afterwards you calculate for missing $x$ your corresponding $y$ with the gp.
$endgroup$
– Andreas Look
Nov 16 '18 at 8:49
$begingroup$
I don't have any income data, I only have person's living cost
$endgroup$
– cloudscomputes
Nov 19 '18 at 3:07
add a comment |
$begingroup$
Thanks for let me know the gaussian process by sklearn
$endgroup$
– cloudscomputes
Nov 14 '18 at 9:09
$begingroup$
According to my understanding these days, GP need a prior (x,y), to build on (x*,y*), however, in my case, I don't have any y, what I have is only x and x*, any further ideas?
$endgroup$
– cloudscomputes
Nov 16 '18 at 8:40
$begingroup$
You can use the month (jan., feb., etc..) as your $x$ and the income as your $y$. Afterwards you calculate for missing $x$ your corresponding $y$ with the gp.
$endgroup$
– Andreas Look
Nov 16 '18 at 8:49
$begingroup$
I don't have any income data, I only have person's living cost
$endgroup$
– cloudscomputes
Nov 19 '18 at 3:07
$begingroup$
Thanks for let me know the gaussian process by sklearn
$endgroup$
– cloudscomputes
Nov 14 '18 at 9:09
$begingroup$
Thanks for let me know the gaussian process by sklearn
$endgroup$
– cloudscomputes
Nov 14 '18 at 9:09
$begingroup$
According to my understanding these days, GP need a prior (x,y), to build on (x*,y*), however, in my case, I don't have any y, what I have is only x and x*, any further ideas?
$endgroup$
– cloudscomputes
Nov 16 '18 at 8:40
$begingroup$
According to my understanding these days, GP need a prior (x,y), to build on (x*,y*), however, in my case, I don't have any y, what I have is only x and x*, any further ideas?
$endgroup$
– cloudscomputes
Nov 16 '18 at 8:40
$begingroup$
You can use the month (jan., feb., etc..) as your $x$ and the income as your $y$. Afterwards you calculate for missing $x$ your corresponding $y$ with the gp.
$endgroup$
– Andreas Look
Nov 16 '18 at 8:49
$begingroup$
You can use the month (jan., feb., etc..) as your $x$ and the income as your $y$. Afterwards you calculate for missing $x$ your corresponding $y$ with the gp.
$endgroup$
– Andreas Look
Nov 16 '18 at 8:49
$begingroup$
I don't have any income data, I only have person's living cost
$endgroup$
– cloudscomputes
Nov 19 '18 at 3:07
$begingroup$
I don't have any income data, I only have person's living cost
$endgroup$
– cloudscomputes
Nov 19 '18 at 3:07
add a comment |
Thanks for contributing an answer to Data Science Stack Exchange!
- 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.
Use MathJax to format equations. MathJax reference.
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%2fdatascience.stackexchange.com%2fquestions%2f41196%2fhow-to-predict-unknownhidden-value-by-incomplete-value-or-partly-recorded-valu%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