-
Notifications
You must be signed in to change notification settings - Fork 281
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
add some functionality #180
base: master
Are you sure you want to change the base?
Conversation
…、FillNaN、FillNaNForward、FillNaNBackward
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a big PR with a lot of new functionality and breaking changes. Maybe we should open an issue to discuss your intention. Breaking changes need always some planning.
@@ -5,8 +5,8 @@ import ( | |||
"strconv" | |||
"testing" | |||
|
|||
"github.com/go-gota/gota/dataframe" | |||
"github.com/go-gota/gota/series" | |||
"github.com/mqy527/gota/dataframe" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I hope, this is a mistake - keep go-gota here.
@@ -41,7 +41,7 @@ type DataFrame struct { | |||
|
|||
// New is the generic DataFrame constructor | |||
func New(se ...series.Series) DataFrame { | |||
if se == nil || len(se) == 0 { | |||
if len(se) == 0 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good catch
add: series rolling, series calculation with number and another series、logical operation