The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
38 views

SQL SELECT Query for Multiple Values and Ranges in Column

SQL SELECT query for multiple values and ranges in row data of a given column. Problem description: Server: MySQL Database: Customer Table: Lan Column: Allowed VLAN (in the range 1-4096) One row ...
1
vote
1answer
27 views

Comparing and matching a range of data with another range of data

Each row of 4 columns represents a set of data A1 : D1 1,2,3,4 A2 : D2 4,2,1,5 A3 : D3 5,3,2,1 etc. Now the column set will be compared to another column set F1 : I1 4,6,3,1 F2 : I2 ...
1
vote
1answer
80 views

Python speeding up the search for a value in a dictionary of ranges

I have a file with a column of values I would like to use to compare with a dictionary that contains two values that together form a range. for instance: File A: Chr1 200 .... Chr3 300 ...
0
votes
0answers
28 views

Cassandra key-ranged queries by MD5 [closed]

Is it possible to run key-ranged queries in Cassandra passing not keys itself but their MD5's (or Murmur Hash) directly? Using Random(Murmur3) partitioning.
2
votes
2answers
56 views

How to undo a popFront a range

What is the standard way to "undo" a popFront operation? I realize that this would not work on all ranges, but for things like arrays, say you had int[] a = [ 1, 2, 3 ]; And you did a.popFront() ...
0
votes
0answers
25 views

Python Annotate File based on Value in ranges

I am working to annotate genomic data with annotations from an annotation file. The Genomic data is in the form: Chr Location ... The Annotation data is in the form Chrom Start End ...
0
votes
1answer
55 views

Python Compare overlap of multiple dictionaries of ranges

I have several set of files I would like to compare based on an identifier column, start value and end value. Each file has the following layout: Ex. A 200 900 A 300 1200 B 100 700 ...
0
votes
1answer
148 views

VBA Difference between two ranges

I can find plenty of questions and example regarding the 'Union' and 'Intersect' VBA methods but I can't find anything much regarding a 'Set Difference' method? Does this exist (other than by using ...
0
votes
1answer
119 views

VBA - How to set the start and end row when setting a range by column numbers

Suppose I set a range of multiple distinct columns by column number like this: Set rngData = shtData.Range(Columns(1), Columns(2), Columns(5)) But I only want the range to start at for example row ...
0
votes
1answer
282 views

MS Excel VBA - Selecting multiple distinct dynamic ranges

I need to copy the data in various columns that are not next to each other and that will have a variable number of rows (but that variable will have the same value for each column). My code so far is ...
0
votes
0answers
82 views

Macro to Sort and Subtotal multiple variable sized ranges in a worksheet

With very limited knowledge of writing macros but having read a lot of material, I have written a code to organize a database into a worksheet with multiple groups of cells containing Accts. Payable ...
0
votes
0answers
87 views

iptables to ignore multiple source ip ranges

How can I deny multiple source ip-ranges in iprange match of iptables? e.g. I want to track all source ip neither from ip range 192.168.0.1-192.168.0.254 nor 172.16.0.1-172.18.0.254. If I wrote two ...
0
votes
1answer
101 views

VBA Excel Printing data into Immediate Window about a range data to test understanding

I am wanting to do a series of small tests that helps builds my understand as I work around a small business problem of generating data in the correct manner. My first approach is to prove for myself ...
1
vote
2answers
113 views

Comparing every cell in a range to another cell

I'm trying to write a macro that will look at a series of times, compare each one with a benchmark time and then generate a note next to each compared time. When I run the macro it will do this for ...
1
vote
2answers
75 views

Comparing two ranges in Excel

I'm having a problem creating a function in Excel on what I think is an array. I do not have much experience with arrays and have tried Google but haven't found an example to apply to my situation. ...
0
votes
0answers
67 views

Make Excel Named Ranges Relative References [closed]

I have two tabs in a workbook who contain several validation cells whose list items are contained in named ranges in a separate tab. This is all the same workbook. The problem comes when I copy the ...
0
votes
5answers
93 views

Finding a value within a dictionary of ranges - python

I'm comparing 2 files with an initial identifier column, start value, and end value. The second file contains corresponding identifiers and another value column. Ex. File 1: A 200 900 A ...
4
votes
1answer
117 views

Merge Overlapping Ranges into unique groups

I have a dataframe of n rows and 3 columns df start end group 1 178 5025 1 2 400 5025 1 3 983 5535 2 4 1932 6918 2 5 33653 38197 3 I would like to make a new column df$group2 that ...
4
votes
1answer
153 views

Find the maximally intersecting subset of ranges

If you have a set of ranges, such as the following simple example... [ [12, 25], #1 [14, 27], #2 [15, 22], #3 [17, 21], #4 [20, 65], #5 [62, 70], #6 [64, 80] #7 ] ... ...
17
votes
6answers
319 views

Continuous integer runs

I have some data in a list that I need to look for continuous runs of integers (My brain thinkrle but don't know how to use it here). It's easier to look at the data set and explain what I'm after. ...
0
votes
1answer
620 views

VBA: looping through a list of named ranges and pasting them to another sheet based on an address reference

I am making some VBA code to help me do the following: Paste a list of all named ranges Loop through the list and copy/select ranges based on the list Each selection will be pasted on another sheet ...
1
vote
1answer
573 views

How to keep ranges on form datasource when manually add filters?

I have a strange problem on form: I added a range to filter records in datasource executeQuery() method, this works fine when opening form but if I set manually a filter in the grid header, the range ...
1
vote
2answers
142 views

Template Conflict for Palindrome Algorithm on String (Array)

After having viewed the excellent Three Unlikely Successful Features of D by Andrei Alexandrescu I tested the palindrome algorithms given there as follows import std.exception; bool ...
1
vote
3answers
121 views

Bash: range lists like a-b,c,k,m-n,x-y,z

how do I get a range-list parameter like "1-6,8,15-20,23,25-28,30" to be parsed/expanded (to "1 2 3 4 5 6 8 15 16 17 18 19 20 23 25 26 27 28 30") with bash? If bash does not work, some other generally ...
4
votes
1answer
126 views

boost::range::join for multiple ranges

I want to do the following: std::vector<int> a = {1,2,3}, b = {4,5,6}, c = {7,8,9}; for(auto&& i : join(a,b,c)) { i += 1 std::cout << i; // -> 2345678910 } I tried ...
0
votes
0answers
57 views

Plotting Ranges in R/Excel

I have a table showing frequency for some ranges as follows : 0-10 3 11-20 8 21-30 17 31-40 10 .. The ranges (0-10 etc.) exist as strings. I want the ranges as the X-axis and the frequencies ...
1
vote
2answers
921 views

Select non-blank rows in spreadsheet

I am going to try and keep this as short as I can and still explain adequately, here goes :) I have searched forums, my VBA literature, and cannot find a way to do what I'm trying. I have a ...
0
votes
2answers
98 views

understanding ruby ranges [closed]

Iam trying to learn ruby now.. And I have doubts in ranges. Help me in understanding ruby ranges. Also please refer some array methods that are most commonly used. 0..3 0...3 What is the difference ...
9
votes
3answers
198 views

Remove consecutive duplicates from dataframe

I have a data frame that I want to remove duplicates that are consecutive (in base). I know rle may be helpful here but can't think of how to use it. The example output will help to illuminate what ...
1
vote
1answer
136 views

In Bash, how to convert number list into ranges of numbers?

Currently I have a sorted output of numbers from a command: 18,19,62,161,162,163,165 I would like to condense these number lists into a list of single numbers or ranges of numbers ...
0
votes
1answer
376 views

vba refer to range in different workbook with “Cells()”

i want to refer to a range in a different book, that is defined from this works: Workbooks(macrofilename).Sheets(IDsheetname).Activate lookRange = Range(Cells(startrow, startcol), Cells(rows, cols)) ...
1
vote
1answer
46 views

How to identify IP Ranges in AutoHotkey

The script that I am using has a variable named SourceIP. I have some static lists of IP Ranges for VPN Pools. How can I set up a searching logic to determine in which IP Pool the Source IP resides? ...
2
votes
1answer
109 views

Reading packets off a fragmented byte stream with ranges?

I believe I sort of know ranges, but I have no real idea for when and where to use them, or how. I fail to "get" ranges. Consider this example: Let's assume we have a network handler, that we have ...
2
votes
1answer
203 views

regular expression to express number range with ascending order

I have to specify a pair of ports using format "number1-number2". Number1 and number2 both in range [0-65535]. But number2 is always larger than number1. Is it possible to make a regular expression ...
2
votes
4answers
445 views

Adjusting the limits of x and y axis, when adding new curves to a plot in R

I have two datasets (df1 and df2) that are plotted. df1 = data.frame(x=c(1:10), y=c(1:10)) df2 = data.frame(x=c(0:13), y=c(0:13)^1.2) # plot plot(df1) # add lines of another dataset lines(df2) ...
1
vote
2answers
130 views

js double value range check

var value1=50 var value2=140 group 1 a,b a>=42 a<=126 , b>=140 b<=213 a,c a>=42 a<=126 , c>=1.40 c<=2.13 b,a b>=140 b<=213 , a>=42 a<=126 c,a ...
-1
votes
1answer
774 views

First Empty cell in row

I am copying a range into the next empty cell of a different workbook. the following code; Public Sub InvoicedInstallments() Dim rng1 As Range Dim rng2 As Range Dim rng3 As Range Dim fname As String ...
4
votes
1answer
109 views

Grouping on a column which has multiple Groups of Duplicate data

I need to group some data based on dates at locations including identifying when a range of dates has no location. I'm some of the way there in that I have managed to produce a list of ALL the dates ...
2
votes
2answers
78 views

MySQL query date ranges

I have googled but did not find anything related. I have a MySQL table like this: +++++++++++++++++++++++++++++++ | roomID | date | price | +++++++++++++++++++++++++++++++ | 1 | ...
0
votes
0answers
40 views

Excel range variable errors second time it is set [closed]

I am looping through sheets in an Excel 2010 workbook. The second time I come to this line: Set rng = WS.Range(Cells(StartRow, StartCol), Cells(MaxRow, MaxCol)) I get the 1004 error (which could be ...
0
votes
1answer
1k views

Google IP range [closed]

after a little search I could find these IP addresses as the google's IP addresses. • 64.233.160.0 - 64.233.191.255 • 66.102.0.0 - 66.102.15.255 • 66.249.64.0 - 66.249.95.255 • ...
3
votes
1answer
109 views

Exclusive end in Scala's Range class

According to the Scala documentation for the method Range.end, it returns "the exclusive end of the range." So why does it return the same value for both the to and the until notations? For example: ...
0
votes
0answers
127 views

Use JavaScript to set protected range on Google spreadsheet

Google Spreadsheet just started allowing users to set permissions on editing specific cells under its regular user interface. I was wondering if it's also doable with script. I need to set protected ...
-2
votes
1answer
51 views

Converting from [0,10] to [1,-1] [closed]

So, if it was like [0,10] to [-1,1], I would do: [-1,1] now is [0, 2] so, a value of 10 in the range [0,10] would be = ((10*2)/10) + (-1) in the range [-1, 1], where -1 is the "offset" of the ...
2
votes
1answer
161 views

How do I find the *most* average / closest value to the average value within a set of values in Excel?

This is probably a really easy question to answer but it's been bugging me for ages now! Say I have a range of values in a column sorted like: Sales: 1500 160 40 300 200 Within this range, I know ...
1
vote
3answers
276 views

Does guava provide any support for defining ranges of characters?

Guava has the ability to define ranges over discrete domains and then create a collection representing those numbers. Is it possible to create ranges over characters of the modern english latin ...
11
votes
4answers
256 views

Extract integers from ranges

In R, what's an efficient way to extract the integers from ranges? Let's say I have a matrix of ranges (column1=start, column2=end) 1 5 3 6 10 13 I would like to store the encompassing unique ...
0
votes
1answer
55 views

algorithm for : how to separate sets with common range into each distinct range

i have tried this problem for quite some time but cannot find a good solution : suppose we have ranges of integers like 100 - 1000 200 - 300 500 - 600 550 - 575 800 - 1200 1100 - 2300 so i ...
0
votes
1answer
188 views

Evaluating multiple ranges within an Oracle IN clause

I have an Oracle select that looks like this: SELECT * FROM CUSTOMER WHERE (CUSTOMER_TYPE BETWEEN 100 AND 200 OR CUSTOMER_TYPE = 350 OR CUSTOMER_TYPE BETWEEN 410 AND 520); I want to ...
3
votes
2answers
469 views

SQL: Merge Date Ranges

I've a table, which describes work slices of a business working calendar: (date format is 24 hours format) PK | STARTDATE | ENDDATE __________________________________________ 1 | ...

1 2 3