Posts by Gabriel Mizuno • 167 points
9 posts
- 
		0 votes0 answers69 viewsQ: Dash Problem in PythonI’m trying to run this application on my laptop (Macbook air), and when I go to Terminal it does not run, but when it runs on a windows PC I have no problems import dash import dash_core_components… 
- 
		1 votes2 answers109 viewsA: Click using Webscraping with SeleniumApparently put time.sleep(2) #Preenchendo senha e clicando senha = driver.find_element_by_id('i0118') senha.send_keys('MINHA SENHA') time.sleep(2) driver.find_element_by_id("idSIButton9").click() It… 
- 
		1 votes2 answers109 viewsQ: Click using Webscraping with SeleniumI am starting my studies with Webscraping and I have the problem at the time of giving a second click on a new page. I am trying to access my email using Selenium, I can fill my email and click to… 
- 
		0 votes0 answers78 viewsQ: Problem with EncodingI’m doing a job in college that I had to do an opinion poll, and for that I used Google Forms to do this job. After collecting the answers I imported the file using the read_xlsx and had an… rasked Gabriel Mizuno 167
- 
		6 votes1 answer320 viewsQ: Recursion in R errorI have the following recursive function: tamanho <- function(v){ if (is.null(v)){ return(0) } i <- tamanho(v[-1])+1 return(i) } I’m using Rstudio, and when I call the function with this… 
- 
		2 votes2 answers1414 viewsA: In R, how to calculate the average of one column based on another?I’m creating a table to explain what I’m doing Data <- c("3/1/2005", "4/1/2005", "5/1/2005", "6/1/2005", "14/2/2006", "15/2/2006", "16/2/2006", "17/2/2006", "6/3/2007", "7/3/2007", "8/3/2007",… ranswered Gabriel Mizuno 167
- 
		2 votes1 answer65 viewsQ: Graph is not exiting in outputlibrary(shiny) ui <- fluidPage( titlePanel("Funcao Poder"), sidebarLayout( sidebarPanel( sliderInput("n1", "Tamanho da amostra:", min = 1, max = 50, value = 30), sliderInput("n2", "Tamanho da… 
- 
		3 votes1 answer119 viewsQ: Shiny error when generating HTMLI am trying to "create an odds calculator for the Normal and Binomial distributions, however this giving some error when generating HTML..Follow the codes below. PS: it would be possible to exchange… 
- 
		1 votes0 answers178 viewsQ: Problem in shinyapp publicationThe app(ui+server) runs normally but when publishing to http://www.shinyapps.io/ is giving the image error how to proceed to resolve. If necessary I can post the codes.…