-
Notifications
You must be signed in to change notification settings - Fork 0
/
dash.Rmd
53 lines (39 loc) · 980 Bytes
/
dash.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
title: "BusqueImóveis-SP"
author: "Fernando Corrêa"
output: html_document
runtime: shiny
---
<h1>Busque venda de imóveis pelo endereço<\h1>
A prefeitura de São Paulo divulga tabelas com muitas transações imobiliárias, incluindo valor e endereço.
Quer procurar algum imóvel?
Digite o endereço abaixo e devolvemos para você o **valor** e as **datas de negociação** que estão disponíveis no site da prefeitura.
```{r filtro, echo = FALSE}
library(shiny)
library(tidyverse)
dados <- readRDS("resumido.rds")
shiny::textInput(
"endereco",
label = "Busque aqui um endereço",
value = "123")
actionButton("buscar", "Buscar Imóveis")
```
```{r, echo = FALSE}
tabela <- eventReactive(input$buscar, {
dados |>
dplyr::filter(
stringr::str_detect(
paste(
`Nome do Logradouro`,
`Número`),
input$endereco
)
)
}
)
shiny::renderDataTable(
DT::datatable(
tabela()
)
)
```