Questions tagged [raw]

204 questions
0
votes
0 answers

Absolute address of a file in MAUI

I do not know the absolute address of a file in fill Hello I want to get the absolute address of a file added in the Raw folder in the MAUI project so that it works correctly when moving or installing the program on other systems. Please help.…
0
votes
0 answers

i working with connectionist bench (sonar mines vs. rocks) dataset to classify the object if mines oor rock

i have question about this dataset connectionist bench (sonar mines vs. rocks) is it raw data or processed data? df = pd.read_csv('/Users/user/Downloads/sonar.all-data.csv',…
0
votes
0 answers

Python regex matches the string while it shouldn't

I have written simple code in Python to match the string using pattern object: import re my_pattern = re.compile(r'a\\b') my_string = 'a\\b' if my_pattern.match(my_string): print("Pattern matches the string") This code indeed print the…
0
votes
0 answers

Reading ASCII data in R

I previously asked here about reading .RAW files in R. I have looked for more details on these files and have found this documentation: And this: I do not have experience with ASCII files but I have managed to open it using this code: >…
0
votes
0 answers

Opening .RAW with data in R

I am working with some public data found here. As you can see, they both include a .raw file and a file that ends in .87. I believe these files my include some data that I want to check and want to get to read in R as a data.frame. For this, I have…
0
votes
0 answers

create RAW folder under RES folder in android studio and are not showing up in the file view

Yes, I do see some other similar questions to this, but not the same problem. I am trying to create another layout folder (layout-sw720dp). I have tried to Right click on res folder>New folder> Raw Resources Folder. This does create the required…
Steve X
  • 55
  • 5
0
votes
1 answer

MassTransit receive a message in Raw or XML format

I am trying to get an XML message from a queue (hosted by ActiveMQ). It works perfectly as long as I use JSON messages, but I do not get it to work with raw text or XML messages. I have tried to change the ContentType: cfg.DefaultContentType = new…
Hawk IT
  • 13
  • 3
0
votes
1 answer

Understanding DeepAr plot_prediction in pytorch forecasting

I have tried the example of the pytorch forecasting DeepAR implementation as described in the doc. There are two ways to create and plot predictions with the model, which give very different results. One is using the model's forward() function and…
DMC
  • 1
  • 2
0
votes
0 answers

Getting mp3 files from the raw folder

I want to create a function that gets mp3 files from the raw folder and returns a list these in mp3 in objects data class mp3( val id: Int , val rawResourceId : Int , val title : String , val isPlaying : Boolean ) class…
Rdog420
  • 1
  • 1
0
votes
0 answers

LwIP Raw API [No RTOS] LPC1788 TCP Server receive and transmit example?

I'm using LPC1788 from NXP Bare Metal with NO RTOS [Raw API mode] and I'm looking for an example using LwIP as a TCP socket server. My app needs to receive data over the socket and process it to generate a response buffer to be transmitted beack to…
Gus
  • 1
  • 1
0
votes
0 answers

Log RAW request from HttpClient?

I have generated a .NET Core 6 C# httpClient with NSwagStudio from a json file that is used in my winform application. To test this client Im using mock service in Postman. Postman reacts with "No matching requests" so I need to add a request…
Banshee
  • 15,376
  • 38
  • 128
  • 219
0
votes
0 answers

How to find a raw datasets as csv-file for data warehouse with the requirements

Can you please help me to find raw datasets as csv-file for data warehouse with the following requirements: One scheme (star, snowflake, etc.) and at least 3 dimensions can be modelled. File size: at least 100MB Transaction data Domain or Subject…
0
votes
0 answers

can't get rid of double backslash in windows path raw string

I know there has been loads of questions about that but I've tried every possible solution but can't get rid of the backslash on my windows path. I'm generating PDF releases names list of those that with an update date greater than Sep'21 into a…
0
votes
0 answers

Writing RAW BayerRB12 to disk (python)

I am working with some raw camera data (BayerRG8 or BayerRG12) that is coming straight from a camera (Allied vision). I can access it as a numpy array of shape (1216,1936,1) at a bitdepth of or . To get…
Phil333
  • 19
  • 1
  • 7
0
votes
1 answer

How to superscript variable using raw string in python

I am using pyplot and numpy in python to show the plots of x^s where s = {2,3,4,5} and iterating for x^s and x^s. When using 'fr' to import my variable 'x' and its negative value, the superscript is only working for '-' and not '-2' for example. My…