123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333 |
- <template>
- <div class="container">
- <div class="chart-container">
- <VueEcharts :option="ecLineOption" ref="ecLineOptionRef" />
- </div>
- <p class="sub-title">初代散点图</p>
- <div class="chart-container">
- <VueEcharts :option="ecInitScatterOption" ref="ecInitScatterOptionRef" />
- </div>
- <p class="sub-title">中间代散点图</p>
- <div class="chart-container">
- <VueEcharts :option="ecMidScatterOption" ref="ecMidScatterOptionRef" />
- </div>
- <p class="sub-title">最终代散点图</p>
- <div class="chart-container">
- <VueEcharts :option="ecFinalScatterOption" ref="ecFinalScatterOptionRef" />
- </div>
- </div>
- </template>
- <script setup lang='ts' name=''>
- import {ref} from 'vue'
- import VueEcharts from 'vue-echarts';
- import 'echarts';
- const ecLineOptionRef = ref<InstanceType<typeof VueEcharts> | null>(null);
- const ecInitScatterOptionRef = ref<InstanceType<typeof VueEcharts> | null>(null);
- const ecMidScatterOptionRef = ref<InstanceType<typeof VueEcharts> | null>(null);
- const ecFinalScatterOptionRef = ref<InstanceType<typeof VueEcharts> | null>(null);
- // 计算数据范围的函数
- const calculateDataRange = (data: any[]) => {
- const xValues = data.map((item: any[]) => item[0]);
- const yValues = data.map((item: any[]) => item[1]);
- return {
- xMin: Math.min(...xValues),
- xMax: Math.max(...xValues),
- yMin: Math.min(...yValues),
- yMax: Math.max(...yValues)
- };
- };
- // 反酸模型 初代 散点图
- const getInitScatterOption=()=>{
- const scatterData = [[0.12931, 0.10315928999999999], [0.066298, 0.10226514000000003], [0.057692, 0.10226514000000003], [0.072464, 0.10339078000000003], [0.146414, 0.10000317000000003], [0.087263, 0.09199080000000004], [0.096983, 0.09947644], [0.070505, 0.10142657000000004], [0.052497, 0.09956722000000007], [0.166515, 0.10179712], [0.063291, 0.10339078000000003]];
- const range = calculateDataRange(scatterData);
- const padding = 0.1;
- const xMin = range.xMin - Math.abs(range.xMin * padding);
- const xMax = range.xMax + Math.abs(range.xMax * padding);
- const yMin = range.yMin - Math.abs(range.yMin * padding);
- const yMax = range.yMax + Math.abs(range.yMax * padding);
- const min = Math.min(xMin, yMin)
- const max = Math.max(xMax, yMax)
- return {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'cross'
- }
- },
- legend: {
- data: ['True vs Predicted']
- },
- grid: {
- left: '4%',
- right: '22%',
- bottom: '3%',
- containLabel: true
- },
- xAxis: {
- name: 'True Values',
- type: 'value',
- min: min,
- max: max
- },
- yAxis: {
- name: 'Predicted Values',
- type: 'value',
- min: parseFloat(min.toFixed(2)),
- max: parseFloat(max.toFixed(2))
- },
- series: [
- {
- name: 'True vs Predicted',
- type: 'scatter',
- data: scatterData,
- symbolSize: 10,
- itemStyle: {
- color: '#1f77b4',
- opacity: 0.7
- }
- },
- {
- name: 'Trendline',
- type: 'line',
- data: [
- [min, min],
- [max, max]
- ],
- lineStyle: {
- type: 'dashed',
- color: '#ff7f0e',
- width: 2
- }
- }
- ]
- };
- }
- // 反酸模型 中间代 散点图
- const getMidScatterOption=()=>{
- const scatterData = [[0.12931, 0.09595878000000002], [0.066298, 0.10344700000000003], [0.057692, 0.10344700000000003], [0.072464, 0.09011803], [0.146414, 0.0853504500000001], [0.087263, 0.07407179000000012], [0.096983, 0.10581049999999995], [0.070505, 0.09876380000000004], [0.052497, 0.08568465000000008], [0.166515, 0.13348440999999997], [0.063291, 0.09011803]];
- const range = calculateDataRange(scatterData);
- const padding = 0.1;
- const xMin = range.xMin - Math.abs(range.xMin * padding);
- const xMax = range.xMax + Math.abs(range.xMax * padding);
- const yMin = range.yMin - Math.abs(range.yMin * padding);
- const yMax = range.yMax + Math.abs(range.yMax * padding);
- const min = Math.min(xMin, yMin)
- const max = Math.max(xMax, yMax)
- return {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'cross'
- }
- },
- legend: {
- data: ['True vs Predicted']
- },
- grid: {
- left: '4%',
- right: '22%',
- bottom: '3%',
- containLabel: true
- },
- xAxis: {
- name: 'True Values',
- type: 'value',
- min: min,
- max: max
- },
- yAxis: {
- name: 'Predicted Values',
- type: 'value',
- min: parseFloat(min.toFixed(2)),
- max: parseFloat(max.toFixed(2))
- },
- series: [
- {
- name: 'True vs Predicted',
- type: 'scatter',
- data: scatterData,
- symbolSize: 10,
- itemStyle: {
- color: '#1f77b4',
- opacity: 0.7
- }
- },
- {
- name: 'Trendline',
- type: 'line',
- data: [
- [min, min],
- [max, max]
- ],
- lineStyle: {
- type: 'dashed',
- color: '#ff7f0e',
- width: 2
- }
- }
- ]
- };
- }
- // 反酸模型 最终代 散点图
- const getFinalScatterOption=() => {
- const scatterData = [[0.12931, 0.1144982841836412], [0.066298, 0.07733075000000009],
- [0.057692, 0.07784833000000009], [0.072464, 0.09429906104591025],
- [0.146414, 0.11774272000000004], [0.087263, 0.07587641627546172],
- [0.096983, 0.12344755999999983], [0.070505, 0.06424743000000006],
- [0.052497, 0.07665224568865422], [0.166515, 0.15591779999999988],
- [0.063291, 0.09275175104591024]];
- const range = calculateDataRange(scatterData);
- const padding = 0.1;
- const xMin = range.xMin - Math.abs(range.xMin * padding);
- const xMax = range.xMax + Math.abs(range.xMax * padding);
- const yMin = range.yMin - Math.abs(range.yMin * padding);
- const yMax = range.yMax + Math.abs(range.yMax * padding);
- const min = Math.min(xMin, yMin)
- const max = Math.max(xMax, yMax)
- return {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'cross'
- }
- },
- legend: {
- data: ['True vs Predicted']
- },
- grid: {
- left: '4%',
- right: '22%',
- bottom: '3%',
- containLabel: true
- },
- xAxis: {
- name: 'True Values',
- type: 'value',
- min: min,
- max: max
- },
- yAxis: {
- name: 'Predicted Values',
- type: 'value',
- min: parseFloat(min.toFixed(2)),
- max: parseFloat(max.toFixed(2))
- },
- series: [
- {
- name: 'True vs Predicted',
- type: 'scatter',
- data: scatterData,
- symbolSize: 10,
- itemStyle: {
- color: '#1f77b4',
- opacity: 0.7
- }
- },
- {
- name: 'Trendline',
- type: 'line',
- data: [
- [min, min],
- [max, max]
- ],
- lineStyle: {
- type: 'dashed',
- color: '#ff7f0e',
- width: 2
- }
- }
- ]
- };
- }
- //获取折线图配置
- const getLineOption=()=>{
- return{
- tooltip:{
- trigger:'axis'
- },
- legend:{
- data:['Random Forest', 'XGBoost', 'Gradient Boosting'] // 模型名称
- },
- grid: {
- left: '3%',
- right: '17%',
- bottom: '3%',
- containLabel: true
- },
- xAxis: {
- name: '模型迭代',
- type: 'category',
- boundaryGap: false,
- data: ['1代','2代','3代','4代','5代','6代','7代','8代','9代'] // train_sizes按10%递增
- },
- yAxis: {
- name: 'Score (R^2)',
- type: 'value'
- },
- series: [
- {
- name: 'Random Forest',
- type: 'line',
- data: [-0.07014332070467688, 0.16174446067644666, 0.45539363923645115, 0.42496898634299696, 0.4538427686692541, 0.418902219699232, 0.3944331740214546, 0.5036773554206873, 0.6231911298905934, 0.7017514238881619]
- },
- {
- name: 'XGBoost',
- type: 'line',
- data: [-0.5854699949971149, 0.12632204933742897, 0.5552415957727412, 0.36024885147666674, 0.3983302490476677, 0.11693728875627551, 0.41317321044147026, 0.7833174829404705, 0.6626050730438451, 0.8168196535959388]
- },
- {
- name: 'Gradient Boosting',
- type: 'line',
- data: [-0.2099996080229254, 0.2604127444757308, 0.5544068626708099, 0.37487088504748367, 0.32309657868722486, 0.24740671740183884, 0.4949107161199925, 0.694806526591159, 0.6719430144475025, 0.7889677514137288]
- }
- ]
- }
- }
- const ecLineOption=ref(getLineOption());
- const ecInitScatterOption = ref(getInitScatterOption());
- const ecMidScatterOption = ref(getMidScatterOption());
- const ecFinalScatterOption = ref(getFinalScatterOption());
- </script>
- <style scoped>
- .container {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 100%;
- gap: 20px;
- }
- .sub-title {
- font-size: 14px;
- font-weight: 700;
- }
- .chart-container {
- width: 75%;
- height: 450px;
- margin-bottom: 20px;
- }
- .VueEcharts {
- width: 100%;
- height: 100%;
- margin: 0 10px;
- }
- </style>
|