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

add some functionality #180

Open
wants to merge 62 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
d3c9b6a
go mod
mqy527 Jun 10, 2021
37caee1
1、add some functions in Series : Shift、CumProd、Prod、AddConst、MulConst…
mqy527 Jun 11, 2021
e357493
rolling not test
mqy527 Jun 11, 2021
8e217e5
fix rolling.max and rolling.min
mqy527 Jun 11, 2021
adce640
Rolling.Mean、Quantile、Median、StdDev
mqy527 Jun 15, 2021
1768517
series And、Or
mqy527 Jun 16, 2021
aef0878
logic_test
mqy527 Jun 16, 2021
a40de6b
modify MapFunction,add index param:index
mqy527 Jun 16, 2021
be99528
fix test case
mqy527 Jun 16, 2021
957270b
add rolling series name
mqy527 Jun 17, 2021
7a5c902
fix:series name
mqy527 Jun 18, 2021
49bffe2
add method: series.Operation
mqy527 Jun 21, 2021
6be74a6
Number.Sub、Div、Mod
mqy527 Jun 22, 2021
e49182b
modify go.mod
mqy527 Jul 14, 2021
63dd7f3
modify mod path
mqy527 Jul 22, 2021
dcc2401
optimize Series.Elem
mqy527 Sep 26, 2021
e5e5bed
optimize DataFrame
mqy527 Nov 9, 2021
b7bcff4
Rolling, add method: Apply、MeanByWeights
mqy527 Feb 22, 2022
7e733e3
refactor rolling
mqy527 Mar 3, 2022
2847476
optimize rolling
mqy527 Mar 8, 2022
3ad37b0
Merge from 'go-gota/gota'
mqy527 Mar 8, 2022
c1c2ba8
Remove redundant code
mqy527 Mar 8, 2022
b8b1898
optimize:Series.Slice
mqy527 Mar 9, 2022
9c5bef1
rolling: add descriptions
mqy527 Mar 9, 2022
4292dbd
delete Element.NA()
mqy527 Mar 9, 2022
c0fe7cd
modify module name
mqy527 Mar 9, 2022
e3829e0
optimize:series logic
mqy527 Mar 9, 2022
ca5da43
refactor some method
mqy527 Mar 15, 2022
fd76827
optimize series.Shift
mqy527 Mar 15, 2022
e0847fe
optimize series.Shift
mqy527 Mar 16, 2022
5913f0c
Modify comments
mqy527 Mar 16, 2022
d426b3e
optimize
mqy527 Mar 17, 2022
e4b68c6
modify module
mqy527 Mar 18, 2022
7fbfed2
modify module name
mqy527 Mar 20, 2022
9289c82
modify module name
mqy527 Mar 20, 2022
07dca74
rolling cache
mqy527 Mar 28, 2022
090fb6c
Merge branch 'master' of https://github.com/mqy527/gota
mqy527 Mar 28, 2022
789925a
cacheAble
mqy527 Mar 29, 2022
9f25bdb
unstable
mqy527 Mar 30, 2022
fae5106
cacheAbleRollingSeries
mqy527 Mar 30, 2022
5ac7a3d
cacheAbleSeries
mqy527 Mar 31, 2022
1b91cf9
cacheAbleSeries
mqy527 Mar 31, 2022
54fe127
cacheAbleSeries
mqy527 Apr 1, 2022
6a0ce85
when, wrap: for special operations
mqy527 Apr 1, 2022
2ac0c44
add comment
mqy527 Apr 2, 2022
d1a94cd
fix bug:seriesCache.set
mqy527 Apr 4, 2022
d85a663
Series.Filter
mqy527 May 9, 2022
029d698
add:DataQuantile()
mqy527 May 11, 2022
3b9f6be
add: rolling Quantile
mqy527 May 12, 2022
400ca1d
DataFrame.Slice
mqy527 May 16, 2022
09e42af
optimize Series.DataQuantile(s)
mqy527 May 17, 2022
e3b8e38
self
mqy527 May 20, 2022
7d91dc2
DataFrame FromSeries
mqy527 May 22, 2022
26ec178
optimize cache
mqy527 May 24, 2022
4ad05e9
immutable series
mqy527 May 24, 2022
836a329
optimize cacheable
mqy527 May 25, 2022
5fc68cf
delete cache
mqy527 May 25, 2022
b54ea74
delete some AddConst、MulConst、DivConst from cacheAbleSeries
mqy527 Jun 13, 2022
97b5a4d
Sum support Bool
mqy527 Jul 7, 2022
3962767
add method:CapplyWithName、Rename、RemoveCols
mqy527 Dec 24, 2022
7a1c43b
change method name:CapplyWithName-->CapplyByName
mqy527 Dec 25, 2022
a3a8aac
add FloatValuer
mqy527 Jul 19, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dataframe/benchmark_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"strconv"
"testing"

"github.com/go-gota/gota/dataframe"
"github.com/go-gota/gota/series"
"github.com/mqy527/gota/dataframe"
Copy link
Contributor

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.

"github.com/mqy527/gota/series"
)

func generateSeries(n, rep int) (data []series.Series) {
Expand Down
Loading