python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Is there a way to get a Bit field in SQL (non transact)
Let's say the field comes with a number like 134479872, I'd like it to revert back to 0xffffffff and extract each pair like Oxff00000, 0x00ff0000, 0x0000ff00 and 0x000000ff in a separate field. The bi...
VBSMartin
Votes: 0
Answers: 1
I am trying to create a binary variable in R on two conditions
I created two variables "score_diff" and "seed_diff", I would like to create a binary variable which is defined by if the score_diff is <0 and if the seed_diff is greater than 5...
skinwizard
Votes: 0
Answers: 2
Reading hex data from serial port
I am trying to read a hex data from an MCU connected by USB. The MCU is designed to provide output in hex.
This is a simple code I wrote using pyserial:
import serial
import time
ser = serial.Serial(...
EliF
Votes: 0
Answers: 1
How to add rows with condition and binary variable in panel dataset on R
I am constructing a panel dataset from an original data which contains for each row, a company (name) and its sales across 10 years.
In concrete, it loos like this:
The panel dataset I am building ha...
Anna Sanibel Ferrini
Votes: 0
Answers: 1