Questions tagged [read-data]

130 questions
0
votes
1 answer

Inputting data in SAS, reading multiple lines

I get an error when I try reading the following data lines in SAS. Can you help pinpoint my error? Thank you. DATA VOA; INPUT #1 Address 1-37 $ #2 City $ State $ Zip #3 Latitude Longitude; datalines; 1675 C Street , Suite 201 …
ABCD
  • 43
  • 7
0
votes
1 answer

How do I read a text file by putting its data in a table using CGI in Perl?

The CGI to read the data from merch.txt works but how can I put this in a table? HTML File:
SKU:
r2d222
  • 11
  • 3
0
votes
2 answers

read aligned data in c++

I want to read data from a file with a quite strange structure. The file looks like this below: some lines with text.... 10 1000 10 1 1 1 1 100 100 . . . some lines with text... again data like above.. some lines with…
0
votes
0 answers

I want to get information about how to read data from textView

i am building an android app in this I want to get information how to read data from textView and to send an http request i was not able to figure out what is to be done to make it work. Following is the code that i have used in intent section which…
Moulick
  • 45
  • 5
0
votes
1 answer

Compare data from 3 dat files

I am trying to write a code in Fortran 90 that reads the data from 3 different files (called "data1.dat", "data2.dat", data3.dat"). All the files are made by 3 columns and N lines (the lines depend on another code), and then do the following…
Xoca
  • 23
  • 4
0
votes
1 answer

How to get .adoc pages size with Java

I had a task to read page size of documents like: .doc, .docx, pdf, xls and now i need to count a page size of .adoc document. I googled a lot but didn't find anything familiar for this problem. For .doc, .docx im using Apache POI Java libraries.…
Null
  • 518
  • 7
  • 13
0
votes
3 answers

Read in data from excel file in C

I need to write a program that can read the relevant information from a file and output the maintenance needs as shown in the sample output on the following slides. I have completed the code to read from the .txt file as seen in this screen…
user4142890
-1
votes
0 answers

I am getting an error,, i want to import the whole folder images in jupyter and assign them in one array?

Error in importing image folder , if i use double \ than the error is resolve but consider location as string and give me empty string r how to resolve this and import all images ? what are the alternative to import images in Pyhton ? can all…
-1
votes
1 answer

how can i make a desktop cleaner?

i have everytime a messy desktop, because i forget to save the Files in the right binder. Now i searcht on GitHub and else, for a programm who read every Friday my desktop binder, and than it moves all fiels with a Audio extension to the Audio…
-1
votes
1 answer

how do I read in numbers from a file and assign variables to them when the numbers have some text before them on the line in the file

I am reading in data from a text file in python. one of the lines that is being read is the following Grid-ref= 4, 323 I want to be able to assign the 4 and 323 to variables xref and yref respectively. This line appears several times throughout…
-1
votes
1 answer

How to access an array from one member function in another member function?

So, I'm trying to access a section of a data file through an array used by another member function but I'm not sure how. I created a member function that reads the data(from the file) in arrays, and I want to access a certain array(ba[i]) in 3…
-1
votes
1 answer

How to save a specific column into an array in C++?

I have a set of data in a .txt file that has an arbitrary number of columns, specified by the user in the input. I want to read that file, pick one of the columns and save it in an array. What is the best way to do this? I have read this, this and…
-1
votes
1 answer

Combine files in multiple folders into one folder on Mac or read multiple files in different folders simultaneously in R

Is there a quick way on Mac to put thousands of files from different folders into one folder or is there a way for R to read thousands of files in different working directories simultaneously?
Rlearner
  • 53
  • 3
-1
votes
1 answer

How to read specific data in this oddly structured text file? Python

I've been developing a discord bot for the game Counter Strike Global Offensive and upon me trying to widen its features i've come across something i've never seen before. I have been looking for the past 4 hours and can't find anything related…
Truemusic
  • 3
  • 1
-1
votes
3 answers

C++ environment/IDE to avoid multiple reads of big data sets

I am currently working on a big dataset (approximately a billion data points) and I have decided to use C++ over R in particular for convenience in memory allocation. However, there does not seem to exist an equivalent to R Studio for C++ in order…
A Ht
  • 1
1 2 3
8
9