Classification/weather prediction
I am currently studying weather prediction using R.
I tried rpart
but some of the predictions are removed.
My data contains Weather, Humidity, and Temperature can be found on the link,
Weather Data.
I just want to create ranges for the prediction like:
Haze = Temperature is 27 to 29 & Humidity is 72 to 76
for all the data under weather. What is the best thing to do?
r classification prediction weather
add a comment |
I am currently studying weather prediction using R.
I tried rpart
but some of the predictions are removed.
My data contains Weather, Humidity, and Temperature can be found on the link,
Weather Data.
I just want to create ranges for the prediction like:
Haze = Temperature is 27 to 29 & Humidity is 72 to 76
for all the data under weather. What is the best thing to do?
r classification prediction weather
1
I'm trying to know the range to categorize that this temperature and this humidity is a haze.
– April Capistrano
Nov 12 '18 at 11:55
Can you not just look at the distributions of temp and humidity where your response variable = Haze? I'm not sure why you need to build a model for this.
– Cleland
Nov 12 '18 at 14:12
add a comment |
I am currently studying weather prediction using R.
I tried rpart
but some of the predictions are removed.
My data contains Weather, Humidity, and Temperature can be found on the link,
Weather Data.
I just want to create ranges for the prediction like:
Haze = Temperature is 27 to 29 & Humidity is 72 to 76
for all the data under weather. What is the best thing to do?
r classification prediction weather
I am currently studying weather prediction using R.
I tried rpart
but some of the predictions are removed.
My data contains Weather, Humidity, and Temperature can be found on the link,
Weather Data.
I just want to create ranges for the prediction like:
Haze = Temperature is 27 to 29 & Humidity is 72 to 76
for all the data under weather. What is the best thing to do?
r classification prediction weather
r classification prediction weather
edited Nov 12 '18 at 11:49
hrbrmstr
60.3k687148
60.3k687148
asked Nov 12 '18 at 11:48
April CapistranoApril Capistrano
35
35
1
I'm trying to know the range to categorize that this temperature and this humidity is a haze.
– April Capistrano
Nov 12 '18 at 11:55
Can you not just look at the distributions of temp and humidity where your response variable = Haze? I'm not sure why you need to build a model for this.
– Cleland
Nov 12 '18 at 14:12
add a comment |
1
I'm trying to know the range to categorize that this temperature and this humidity is a haze.
– April Capistrano
Nov 12 '18 at 11:55
Can you not just look at the distributions of temp and humidity where your response variable = Haze? I'm not sure why you need to build a model for this.
– Cleland
Nov 12 '18 at 14:12
1
1
I'm trying to know the range to categorize that this temperature and this humidity is a haze.
– April Capistrano
Nov 12 '18 at 11:55
I'm trying to know the range to categorize that this temperature and this humidity is a haze.
– April Capistrano
Nov 12 '18 at 11:55
Can you not just look at the distributions of temp and humidity where your response variable = Haze? I'm not sure why you need to build a model for this.
– Cleland
Nov 12 '18 at 14:12
Can you not just look at the distributions of temp and humidity where your response variable = Haze? I'm not sure why you need to build a model for this.
– Cleland
Nov 12 '18 at 14:12
add a comment |
1 Answer
1
active
oldest
votes
expand.grid()` for this issue.
expand.grid creates all possible combinations from sequences 27:29 and 72 to 76.
See this example
expand.grid("Temperature" = 27:29, "Humidity" = 72:76)
This can handed over the function predict like this:
predict(Yourmodel, newdata = expand.grid(Temperature = 27:29, "Humidity" = 72:76))
I don't know the range. That's what I'm trying to discover in this research.
– April Capistrano
Nov 12 '18 at 12:01
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%2f53261539%2fclassification-weather-prediction%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
expand.grid()` for this issue.
expand.grid creates all possible combinations from sequences 27:29 and 72 to 76.
See this example
expand.grid("Temperature" = 27:29, "Humidity" = 72:76)
This can handed over the function predict like this:
predict(Yourmodel, newdata = expand.grid(Temperature = 27:29, "Humidity" = 72:76))
I don't know the range. That's what I'm trying to discover in this research.
– April Capistrano
Nov 12 '18 at 12:01
add a comment |
expand.grid()` for this issue.
expand.grid creates all possible combinations from sequences 27:29 and 72 to 76.
See this example
expand.grid("Temperature" = 27:29, "Humidity" = 72:76)
This can handed over the function predict like this:
predict(Yourmodel, newdata = expand.grid(Temperature = 27:29, "Humidity" = 72:76))
I don't know the range. That's what I'm trying to discover in this research.
– April Capistrano
Nov 12 '18 at 12:01
add a comment |
expand.grid()` for this issue.
expand.grid creates all possible combinations from sequences 27:29 and 72 to 76.
See this example
expand.grid("Temperature" = 27:29, "Humidity" = 72:76)
This can handed over the function predict like this:
predict(Yourmodel, newdata = expand.grid(Temperature = 27:29, "Humidity" = 72:76))
expand.grid()` for this issue.
expand.grid creates all possible combinations from sequences 27:29 and 72 to 76.
See this example
expand.grid("Temperature" = 27:29, "Humidity" = 72:76)
This can handed over the function predict like this:
predict(Yourmodel, newdata = expand.grid(Temperature = 27:29, "Humidity" = 72:76))
edited Nov 12 '18 at 12:05
answered Nov 12 '18 at 11:56
floefloe
268210
268210
I don't know the range. That's what I'm trying to discover in this research.
– April Capistrano
Nov 12 '18 at 12:01
add a comment |
I don't know the range. That's what I'm trying to discover in this research.
– April Capistrano
Nov 12 '18 at 12:01
I don't know the range. That's what I'm trying to discover in this research.
– April Capistrano
Nov 12 '18 at 12:01
I don't know the range. That's what I'm trying to discover in this research.
– April Capistrano
Nov 12 '18 at 12:01
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f53261539%2fclassification-weather-prediction%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
1
I'm trying to know the range to categorize that this temperature and this humidity is a haze.
– April Capistrano
Nov 12 '18 at 11:55
Can you not just look at the distributions of temp and humidity where your response variable = Haze? I'm not sure why you need to build a model for this.
– Cleland
Nov 12 '18 at 14:12