thank you!

Yes, that would be nice... in my case i'm removing the minimum value found 
in a particular column and it's easy to find the index of that... so some 
sort of delete would be convenient, but your technique is working well!

On Saturday, March 1, 2014 8:12:53 PM UTC-5, John Myles White wrote:
>
> I’m not sure if we have a convenient way to do that right now. 
>
> The best thing I can come up with is: 
>
> df = DataFrame(A = 1:10) 
> inds = df[:A] .!= 3 
> df = df[inds, :] 
>
> We should add a delete! (or splice!) method for this. 
>
>  — John 
>
> On Mar 1, 2014, at 5:10 PM, Jason Solack <[email protected] <javascript:>> 
> wrote: 
>
> > First let me say thank you to those who have answered the series of 
> questions i've been posting!! 
> > 
> > I think this is my last roadblock (for now...) 
> > 
> > how would i remove a row from a dataframe if i know the index that i'd 
> like to drop? 
> > 
> > Thank you again! 
> > 
> > Jason 
>
>

Reply via email to