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

refactor: remove low-fre usage features #380

Merged
merged 3 commits into from
Jul 13, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
1 change: 0 additions & 1 deletion packages/rath-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
},
"dependencies": {
"@antv/g6": "^4.8.4",
"@babel/parser": "^7.19.6",
"@fluentui/font-icons-mdl2": "^8.5.4",
"@fluentui/react": "^8.94.4",
"@fluentui/react-components": "^9.19.0",
Expand Down
43 changes: 0 additions & 43 deletions packages/rath-client/public/locales/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -553,49 +553,6 @@
"create": "Create"
}
},
"latiao": {
"maybe": {
"keyword": "keyword",
"operator": "operator",
"fid": "field"
},
"keyword": {
"out": "Append field to data."
},
"op": {
"$set": "Transforms a field to ordinals as a new column.",
"$vec": "Transforms a field to calculative numbers as a new column.",
"$text": "Transforms a field to strings as a new column.",
"$bool": "Transforms a field to 0 or 1 as a new column.",
"$id": "Generates an automatically incrementing id field, starting from 1.",
"$order": "Returns rank index of the data sorted on the target numeric field, starting from 1.",
"$dict": "Returns rank index of the data sorted on the target string field, starting from 1.",
"$isNaN": "Transforms numbers to string \"1\" if the number is NaN, otherwise string \"0\" as a new column.",
"$isZero": "Transforms numbers to string \"1\" if the number is zero, otherwise string \"0\" as a new column.",
"$toDate": "Transforms a field to a set of operative Date objects, which could be sliced on time units.",
"$isValidDate": "Transforms Date objects to string \"1\" if the Date object is valid, otherwise string \"0\" as a new column.",
"$normalize": "Normalizes a field as a new column.",
"$inset": "Scales a field to range -1 ~ +1 as a new column.",
"$bound": "Scales a field to range 0 ~ 1 as a new column.",
"$log": "Projects a field by x -> log(x) (the base is default to E) as a new column.",
"$log2": "Projects a field by x -> log[2](x) as a new column.",
"$log1p": "Projects a field by x -> log(x + 1) as a new column.",
"$log10": "Projects a field by x -> log[10](x) as a new column.",
"$map": "Maps each value to a new value of the same type as a new column.",
"$test": "Maps each value to a 0 (false) or 1 (true) as a new column.",
"$ReLU": "Projects a field by x -> max(0, x) as a new column.",
"$match": "Finds the matched parts of each text content using Regular Expression as a new column.",
"$replace": "Replaces the matched parts of each text content with a given string using Regular Expression as a new column.",
"$concat": "Merge two or more text contents of all the fields as a new column.",
"$sigmoid": "Projects a field by x -> (1 + e^-x)^-1 as a new column.",
"$boxClip": "Maps overflowing values (due to boxplot) to the domain as a new column.",
"$meanClip": "Maps overflowing values (due to the given domain) to the mean of all the other values as a new column.",
"$nearestClip": "Maps overflowing values (due to the given domain) to the domain as a new column.",
"$zeroFill": "Maps Infinite or NaN to 0 as a new column.",
"$meanFill": "Maps Infinite or NaN to the mean of all the other values as a new column.",
"$partition": "Separates each value by boolean expression into two new column."
}
},
"causal_direction": {
"_": "Type of Link",
"none": "irrelevant to",
Expand Down
43 changes: 0 additions & 43 deletions packages/rath-client/public/locales/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -519,49 +519,6 @@
"create": "创建"
}
},
"latiao": {
"maybe": {
"keyword": "关键字",
"operator": "算子",
"fid": "字段"
},
"keyword": {
"out": "扩充这个字段。"
},
"op": {
"$set": "将一列转换至序数作为新的字段。",
"$vec": "将一列转换至可计算数值作为新的字段。",
"$text": "将一列转换至字符字面量作为新的字段。",
"$bool": "将一列转换至 0 或 1 作为新的字段。",
"$id": "生成一列从 1 起自增的 ID。",
"$order": "计算数据按目标字段数学排序后的位次,从 1 开始。",
"$dict": "计算数据按目标字段字典排序后的位次,从 1 开始。",
"$isNaN": "将一列中是 NaN 的数字记为字符 \"1\" ,其他记为字符 \"0\" 作为新的字段。",
"$isZero": "将一列中是 0 的数字记为字符 \"1\" ,其他记为字符 \"0\" 作为新的字段。",
"$toDate": "将一个字段识别为可沿时间单位切面的 Date 对象作为新的字段。",
"$isValidDate": "将一列中是有效 Date 对象的记为字符 \"1\" ,其他记为字符 \"0\" 作为新的字段。",
"$normalize": "标准化一个列作为新的字段。",
"$inset": "将一个列线性映射到 -1 ~ +1 区间作为新的字段。",
"$bound": "将一个列线性映射到 0 ~ 1 区间作为新的字段。",
"$log": "以对数(默认为自然对数)映射变换到一个新的字段。",
"$log2": "以 x -> log[2](x) 映射变换到一个新的字段。",
"$log1p": "以 x -> log(x + 1) 映射变换到一个新的字段。",
"$log10": "以 x -> log[10](x) 映射变换到一个新的字段。",
"$map": "构造一个同等类型的映射变换到一个新的字段。",
"$test": "构造一个二元映射变换到 0(非真)或 1(真)作为一个新的字段。",
"$ReLU": "以 x -> max(0, x) 映射变换到一个新的字段。",
"$match": "使用正则表达式提取出字段中的匹配部分作为新的字段。",
"$replace": "使用正则表达式替换字段中的匹配部分后作为新的字段。",
"$concat": "连接若干列文本作为新的字段。",
"$sigmoid": "以 x -> (1 + e^-x)^-1 映射变换到一个新的字段。",
"$boxClip": "基于箱线图统计,将异常值收束到正常分布范围的上下界作为新的字段。",
"$meanClip": "指定一个范围,将超出这个范围的值修正到范围内所有值的均值作为新的字段。",
"$nearestClip": "指定一个范围,将超出这个范围的值修正到对应的上下界作为新的字段。",
"$zeroFill": "将无穷或错误数值转换至 0 作为新的字段。",
"$meanFill": "将无穷或错误数值转换其他所有值的均值作为新的字段。",
"$partition": "构造一个二元映射将字段按规则拆解到两个新的字段。"
}
},
"causal_direction": {
"_": "连接类型",
"none": "无关",
Expand Down
192 changes: 0 additions & 192 deletions packages/rath-client/src/components/latiaoConsole/autocompletable.tsx

This file was deleted.

Loading