python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Importing dataset: decimals and grouping problem
I have to do an analysis of this dataset and I am already struggling with some coding! I have imported a column with the numbers from a given dataset created on a notepad, sample:
Numbers
1930.38
5550...
lkasquilici
Votes: 0
Answers: 0
R readr read_table with trailing whitespace generates extra logical column
Reading the following where the '.' indicates a space character
with readr::read_table produces this data frame
with a logical column for the trailing whitepsace after the C column, in addition to t...
PM.
Votes: 0
Answers: 1
R: extract dates and numbers from PDF
I'm really struggling to extract the proper information from several thousands PDF files from NTSB (some Dates and numbers to be specific); these PDFs don't require to be OCRed and each report is almo...

Andrei Niță
Votes: 0
Answers: 1
improving a function to read files in a folder
I built this function:
alterations <- function() {
if (!require(readr)) {install.packages("readr")}
if (!require(stringr)) {install.packages("stringr")}
if (!require(da...
Wilson Souza
Votes: 0
Answers: 1