You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
680 B

% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/main.R
\name{f5wx_forecast}
\alias{f5wx_forecast}
\title{Retrieve a forecast table from F5 Weather}
\usage{
f5wx_forecast(search = "Dover, NH")
}
\arguments{
\item{search}{for this location}
}
\value{
\code{f5wx_cast} object which is a \code{list} that contains a data frame of
forecast information and an httr \code{response} object in the event
you want to do more processing of the HTML table
}
\description{
Retrieve a forecast table from F5 Weather
}
\examples{
\dontrun{
library(ggplot2)
f5wx_login()
res <- f5wx_forecast()
f5wx_chart(res) + labs(title = "ECMWF Forecast for Berwick, Maine")
}
}