Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added make_unique() and changed cbind to use it. #1

Merged
merged 1 commit into from
Jul 14, 2012

Conversation

tshort
Copy link
Contributor

@tshort tshort commented Jul 13, 2012

julia> make_unique(["a", "a", "a_2", "a"])
4-element ASCIIString Array:
 "a"  
 "a_1"
 "a_2"
 "a_3"

julia> d = DataFrame({[1:4], [1:4]})
DataFrame  (4,2)
        x1 x2
[1,]     1  1
[2,]     2  2
[3,]     3  3
[4,]     4  4


julia> cbind(d,d)
DataFrame  (4,4)
        x1 x2 x1_1 x2_1
[1,]     1  1    1    1
[2,]     2  2    2    2
[3,]     3  3    3    3
[4,]     4  4    4    4

@johnmyleswhite
Copy link
Contributor

Don't see any reasons not to pull this in, but I'll leave that up to @HarlanH.

@HarlanH
Copy link
Contributor

HarlanH commented Jul 14, 2012

Yep, looks good to me.

HarlanH added a commit that referenced this pull request Jul 14, 2012
Added make_unique() and changed cbind to use it.
@HarlanH HarlanH merged commit f89ef44 into JuliaData:master Jul 14, 2012
doobwa added a commit that referenced this pull request Aug 2, 2012
@milktrader milktrader mentioned this pull request Dec 17, 2012
nalimilan added a commit that referenced this pull request Jul 8, 2017
Replace all occurrences of the term and rename files accordingly.
Also remove NEWS.md and update README.md with new links.
quinnj pushed a commit that referenced this pull request Sep 2, 2017
Replace all occurrences of the term and rename files accordingly.
Also remove NEWS.md and update README.md with new links.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants