Raw data is a term for data collected from a source that has not been subjected to processing or any other manipulation, and are also referred to as primary data.
Questions tagged [raw-data]
204 questions
0
votes
1 answer
reading hierarchical data in SAS
I am trying to read in a data file with SAS that has a hierarchical structure but there is no record type variable which seems to be a requirement for creating several observations per header.
The data looks something like this:
Monkey & Horse Dance…

statsNoob
- 1,325
- 5
- 18
- 36
0
votes
0 answers
php - Turning raw 8 and 16 bit data into an image
I'm trying to load a file and turn it into an image. The file format is called an Infernal Machine MAT and is used for textures in the game Star Wars Jedi Knight Dark Forces 2. The file comes in 2 color depths, 8-bit and 16-bit. They are pretty much…

Edward
- 495
- 1
- 6
- 20
0
votes
1 answer
Core data: access attribute raw data
In my core data model I have an entity with an attribute of type Date. The date is stored by core data as a timeInterval since x. x being a reference date that core data uses. The problem is that the dates where entered manually as actual date…

pnizzle
- 6,243
- 4
- 52
- 81
0
votes
1 answer
Sending raw data using Network object in Unity3D
I'm trying to create an iPad app that shows a controller and that controller sends data to a computer running the actual game. So I'm trying to send the value of the two joysticks on the iPad to the computer to control movement and camera without…

Rice_Crisp
- 1,242
- 1
- 16
- 33
0
votes
1 answer
Is there any source which provides raw DNS archive log data?
Could anyone help me in finding any source which provides raw DNS log data. I don't want processed DNS logs. Any help is appreciated.
Thanks in Advance.

Aravind Asok
- 514
- 1
- 7
- 18
0
votes
1 answer
Legacy Data File to Graph
My program should:
Load a data table from a legacy raw data file.
Provide an interface to display, filter, graph, etc.
My approach is to create an in-memory database as a DataSource for binding the filter controls, results grid, graphs,…

Steven
- 13,501
- 27
- 102
- 146
0
votes
3 answers
Delete all characters in even-number position
If I have this string:
k6s6k6s6c1u6t661w651z6k6z6z6k611
How can delete all the characters in even-numbers position? (2, 4, 6...)
kskscut6w5zkzzk1
I tried:
$str = "k6s6k6s6c1u6t661w651z6k6z6z6k611";
$arr = str_split($str,…

malik51
- 23
- 1
- 1
- 6
-1
votes
2 answers
Design - Best practice to ingest data from different sources with different interfaces
PROBLEM DESCRIPTION
Hello, I would like to implement a service that receives data from various providers and dumps it into a database (a sort of raw data store).
The issue is that the providers have different ways to give me the data I need. Some…

giulio di zio
- 171
- 1
- 11
-1
votes
1 answer
How can I change raw data, from a List type format to the Table?
I need to process many rows of grouped data which in the list form like this:
Title: Mr.
Name: David
Company: Microsoft
Title: Dr.
Name: John
Company: Facebook
Title: Ms.
Name: Olivia
Company: Google
I want to convert this type of data into a…

Bobbiz
- 43
- 1
- 4
-1
votes
1 answer
How to generate 3D mesh from CT Slices (.raw) using marching cubes algorithm in C#?
I am trying to generate 3D mesh (isosurface extraction) from CT slices(.raw file) using the marching cubes algorithm.
The RAW data is 8 bits 512x512 px and 207 slices.
So the input is CT Raw data and the output is a 3D mesh of the CT Object
Can you…

Dhaour9x
- 11
- 2
-1
votes
1 answer
Add Resume's property to the download manager written with Python and Requests
I wrote a small script can get a link and download it.
Now I want to add Resume's property to my script.
This script written in python 3 and requests library.
Below is main download section of my code:
class downloader(Thread):
def…

mohamadreza ch
- 311
- 4
- 13
-1
votes
1 answer
display .raw image in matlab
I have MATLAB code to read raw data and I can display it using 'uint16' like this:
But when I try to change 'uint16' to 'uint64' I get this:
I want to display my image like the 16bit image with using 64bit. Is there a way to do that? My code is…

user9523800
- 1
- 1
-1
votes
1 answer
Parsing to 16-bit value in second complement form
The datasheet put me 2 byte for a data, which is defined as :
"These two byte is a 16-bit value in 2's complement form, whose range is from 0xF800 (-4096) to 0x07FF (4095)"
I don't really understand how to parse this data in javascript.

Little squirrel
- 29
- 2
- 11
-1
votes
1 answer
play .h264 video format - iOS
I have video data,
I need to convert the data into '.h264' format and save into a Temporary file.
NSString* filename = [NSString stringWithFormat:@"capture.h264"];
NSString* path = [NSTemporaryDirectory()…

Vineesh TP
- 7,755
- 12
- 66
- 130
-1
votes
1 answer
Matlab: Excluding Raw Data From Fit
I'm using Matlab to fit some data using the fit function. By default, plot(fit, x, y) plots the fitted curve on top of the raw data. I'm looking for a way to only show the fitted curve. I tried using the outliers feature, but that eliminates data…