|
@@ -209,6 +209,22 @@ export default {
|
|
|
field_instru: '*Field Description',
|
|
|
res_show_col1: 'Date',
|
|
|
res_show_col2: 'Value',
|
|
|
+ opt_tip_btn:'Operation instruction',
|
|
|
+ opt_tip_btn_text:`<div>1. Enter the code in the code input box to invoke the index library indicators for analysis and calculation. After running, output the analysis results:</div>
|
|
|
+ <div>2. Click on the index information, select the data source and search for the index ID/index name, then display the table structure where the index is located, and you can copy and fetch the index code with one click:</div>
|
|
|
+ <div>3. Add a line of code at the end of the calculation for formatted output, where "raw" is the data after final calculation (fill in with actual variable names):</div>
|
|
|
+ <div>result = format_data(raw, "data_time", "value")</div>
|
|
|
+ <div>4. Here is a runnable code example (the code to fetch index data needs to be replaced according to the system query):</div>
|
|
|
+ <br />
|
|
|
+ <div># Fetching Index Data Code:</div>
|
|
|
+ <div>sql1 = f'""'SELECT data_time,\`value\` FROM edb_data_ths WHERE edb_code = 'S004414853' ;'""'</div>
|
|
|
+ <div>raw = pandas_fetch_all(sql1, db)</div>
|
|
|
+ <div># Index Calculation Method Code:</div>
|
|
|
+ <div>raw['value'] = raw['value'] + 1</div>
|
|
|
+ <div># Date Format Conversion Code:</div>
|
|
|
+ <div>raw['data_time'] = raw['data_time'].apply(lambda x: x.strftime("%Y-%m-%d"))</div>
|
|
|
+ <div># Print Calculation Result Code:</div>
|
|
|
+ <div>result = format_data(raw, "data_time", "value")</div>`
|
|
|
},
|
|
|
|
|
|
/* 数据调整页面 */
|