The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
158 views

identify unique string values among lists of elements created by looping over observations in stata

I have an unbalanced, large dataset where each observation can take multiple string values, each stored in a separate variable. At each point in time and for each observation I need to count whether ...
0
votes
1answer
47 views

Finding the unique values in MySQL by few columns

So, i have the following structure of my table: id user_agent user_ip --------------------- 18 Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 ...
0
votes
1answer
89 views

finding values without a loop in R

I have one vector v, created with c(), that has this data: v[a,b,d,z,e,f], it must be unordered And I have a txt file with the form: label 1 2 3 .... b ...
3
votes
2answers
205 views

C++: how to check, that enum has only unique values

we use VS 2008 there is a big enum, which is populated by many developers this enum has a type __int64 (a Microsoft extension), and I want to make compiler complain about non unique values in enum. ...
3
votes
4answers
1k views

How to get unique value in multidimensional array

I have done a lot of looking around on the overflow, and on google, but none of the results works for my specific case. I have a placeholder array called $holder, values as follows: Array ( ...
3
votes
4answers
276 views

removing columns with same value from a data frame

I've got a data frame like this one 1 1 1 K 1 K K 2 1 2 K 1 K K 3 8 3 K 1 K K 4 8 2 K 1 K K 1 1 1 K 1 K K 2 ...
1
vote
4answers
703 views

How to get multiple values from a for loop?

I have a list of records from a column, the list is named as dates. I am trying to get different dates out of the list. The list have many repetitive dates, such as 1/1/2010,1/1/2010, …. but there are ...
2
votes
5answers
2k views

What regular expression can remove duplicate items from a string?

Given a string of identifiers separated by :, is it possible to construct a regular expression to extract the unique identifiers into another string, also separated by :? How is it possible to ...
1
vote
3answers
3k views

Doubt in action script for Flex: getting unique elements from an ArrayCollection

I have an ArrayCollection as mentioned below. private var initDG:ArrayCollection = new ArrayCollection([ {fact: "Order #2314", appName: "AA"}, {fact: "Order #2315", ...
35
votes
4answers
18k views

Efficient list of unique strings C#

What is the most efficient way to store a list of strings ignoring any duplicates? I was thinking a dictionary may be best inserting strings by writing dict[str] = false; and enumerating through the ...