Posts by Rodrigo Junior • 115 points
8 posts
-
-1
votes1
answer18
viewsQ: How do I run a Docker image and as soon as the process is over save the generated file inside the container to the host computer?
I have a code that should be run in a container. As soon as it runs it will generate a png file. Follow Dockerfile: FROM python:3 COPY . /projeto RUN apt update RUN yes | apt install…
-
0
votes1
answer60
viewsA: How to use Selenium to select a specific tag with a class common to other tags?
As I managed to solve alone, I will post here. There is a Selenium parameter for you to filter by the content contained in the tag. The code is:…
-
0
votes1
answer60
viewsQ: How to use Selenium to select a specific tag with a class common to other tags?
I’m wanting to make Crapping the most up-to-date data of this page. Every day she makes available the data of the current day and the next day. My main interest is in the data of the next day. When…
-
0
votes0
answers44
viewsQ: Why does the comma disappear when converting an HTML to str in Python?
I’m extracting some data from a scraping page following a tutorial I saw on Youtube. Follow the code: import requests import pandas as pd from bs4 import BeautifulSoup from selenium import webdriver…
-
1
votes3
answers58
viewsQ: I cannot convert mongodb files to json in python using bson in python
I am trying to work with data from an online database. I am able to do the requisitions in the right way. But when trying to convert the downloaded data using the bson package, I get a string object…
-
2
votes1
answer24
viewsQ: How to find time-series loopholes?
I have several time series with gaps. I mean, day has observation, spends a few days without, then back to observe and so continues with holes. The problem is that they put these series together in…
-
2
votes1
answer47
viewsQ: How to turn a table with columns with days and rows with months into a regular time series?
I have an excel data table that was organized in a strange way. Columns are months and rows are days. In the file, after 31 days, resumes the account of the day. In this case, begins another year. I…
-
5
votes1
answer111
viewsQ: Why is the latest prediction of the time series with the neuralnet package so far out of line with the rest of the predictions?
I set up a neural net to forecast seasonal precipitation from the observed series. When I validate with observed data, the results are good. But in the series predicted by the model, the latest…
rasked Rodrigo Junior 115