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]> 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