File tree 1 file changed +17
-8
lines changed
visualpython/data/m_library 1 file changed +17
-8
lines changed Original file line number Diff line number Diff line change @@ -4056,19 +4056,25 @@ define([
4056
4056
}
4057
4057
]
4058
4058
} ,
4059
- "pd088 " : {
4059
+ "pdFunc_cut " : {
4060
4060
"name" : "Cut" ,
4061
4061
"library" : "pandas" ,
4062
4062
"description" : "Cut data for ranging" ,
4063
- "code" : "${o0} = pd.cut(${i0 }, ${i1 }${right}${labels}${precision})" ,
4063
+ "code" : "${o0} = pd.cut(${x }, ${bins }${right}${labels}${precision})" ,
4064
4064
"options" : [
4065
4065
{
4066
- "name" : "i0 " ,
4066
+ "name" : "x " ,
4067
4067
"label" : "1-dimension Array" ,
4068
+ "component" : [
4069
+ "data_select"
4070
+ ] ,
4071
+ "var_type" : [
4072
+ "Series" , "list"
4073
+ ] ,
4068
4074
"required" : true
4069
4075
} ,
4070
4076
{
4071
- "name" : "i1 " ,
4077
+ "name" : "bins " ,
4072
4078
"label" : "Divide By" ,
4073
4079
"required" : true
4074
4080
} ,
@@ -4102,23 +4108,26 @@ define([
4102
4108
}
4103
4109
]
4104
4110
} ,
4105
- "pd089 " : {
4111
+ "pdFunc_qcut " : {
4106
4112
"name" : "Qcut" ,
4107
4113
"library" : "pandas" ,
4108
4114
"description" : "Q-cut" ,
4109
- "code" : "${o0} = pd.qcut(${i0 }, ${i1 }${labels}${precision})" ,
4115
+ "code" : "${o0} = pd.qcut(${x }, ${q }${labels}${precision})" ,
4110
4116
"options" : [
4111
4117
{
4112
- "name" : "i0 " ,
4118
+ "name" : "x " ,
4113
4119
"label" : "List/Series" ,
4114
4120
"required" : true ,
4121
+ "component" : [
4122
+ "data_select"
4123
+ ] ,
4115
4124
"var_type" : [
4116
4125
"list" ,
4117
4126
"Series"
4118
4127
]
4119
4128
} ,
4120
4129
{
4121
- "name" : "i1 " ,
4130
+ "name" : "q " ,
4122
4131
"label" : "Divide By" ,
4123
4132
"required" : true
4124
4133
} ,
You can’t perform that action at this time.
0 commit comments