Description Usage Arguments Value Examples
View source: R/GetDeepSearchResults_dataframe.R
A wrapper for GetDeepSearchResults that takes data frames with address information as inputs rather than a single address,
and returns the search results for all addresses
| 1 2 3 | 
| .df | a dataframe with address data | 
| col.address | a numeric value specifying which column in  | 
| col.zipcode | a numeric value specifying which column contains the zipcodes (required if no city/state information) | 
| col.city | a numeric value specifying which column contains the city (required if no zipcode information) | 
| col.state | a numeric value specifying which column contains the state abbrev. (required if no zipcode information) | 
| rentzestimate | if  | 
| api_key | a character string specifying the unique Zillow API key | 
| raw | logical, if  | 
A data frame with columns corresponding to address, property, and Zestimate information
| 1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run: 
zapi_key = getOption('ZillowR-zws_id')
adrs <- c('733 Normandy Ct', '600 South Quail Ct','2902 Wood St', '3425 Locust St.')
locations <- data.frame(address=adrs,zipcode=c('67114','67114','50014', '64109'),
state=c("KS","KS","IA","MO"), city=c("Newton","Newton","Ames","Kansas City"))
GetDeepSearchResults_dataframe(locations, col.address=1, col.zipcode=2,
col.city=4, col.state=3,api_key=zapi_key)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.