当前位置:首页>python>Nature 期刊图复现 | Python 实现云雨图(组合分布图)

Nature 期刊图复现 | Python 实现云雨图(组合分布图)

  • 2026-06-27 18:57:31
Nature 期刊图复现 | Python 实现云雨图(组合分布图)

来源论文

论文地址:

https://www.nature.com/articles/s41586-023-05921-z

论文题目:

Flexible solar cells based on foldable silicon wafers with blunted edges

原图释(英):cJscVoc, FF and PCE of 65-μm and 55-μm SHJ solar cells. The top lines, bottom lines, lines in the box, circles and boxes represent maximum values, minimum values, median values, mean values and 25–75% distributions, respectively. 

原图释(中):分别为 65 微米与 55 微米本征层钝化异质结(SHJ)太阳能电池的短路电流密度Jsc、开路电压 Voc、填充因子(FF)及光电转换效率(PCE)。图中顶线、底线、箱内横线、圆形标记与箱体,依次代表最大值、最小值、中位数、平均值以及25%–75% 数据分布区间

复现图片

  1. 左侧箱线图: 精炼提供中位数、均值和四分位数等核心统计指标,便于快速定量对比两组工艺的整体水平。

  2. 中间散点图: 呈现每一个真实实验样本和总样本量。

  3. 右侧分布曲线: 运用内核密度估计(KDE)平滑展现数据的几何分布形态,曲线越尖锐高耸,代表工艺的一致性和良率越高。

配色方案

PALETTES = {    1: {"65 µm""#00bcd4""55 µm""#ffab60"},  # 方案1:青蓝与暖橙 (高对比度,Nature/Science常用)    2: {"65 µm""#2f4b7c""55 µm""#ffa600"},  # 方案2:深海蓝与明亮金 (经典互补色)    3: {"65 µm""#003f5c""55 µm""#ff7c43"},  # 方案3:暗夜蓝与珊瑚橙 (强调对比)    4: {"65 µm""#1f77b4""55 µm""#ff7f0e"},  # 方案4:Matplotlib 经典蓝橙 (通用学术色)    5: {"65 µm""#377eb8""55 µm""#e41a1c"},  # 方案5:学界经典红蓝 (医学与生物学期刊常用)    6: {"65 µm""#415a77""55 µm""#e07a5f"},  # 方案6:莫兰迪低饱和度蓝红 (雅致质感)    7: {"65 µm""#008080""55 µm""#cd5c5c"},  # 方案7:深碧绿与印第安红 (地学/环境科学常用)    8: {"65 µm""#4a90e2""55 µm""#f5a623"},  # 方案8:现代扁平化蓝黄 (清晰度极高)    9: {"65 µm""#0d47a1""55 µm""#ffb300"},  # 方案9:皇家蓝与琥珀金 (高贵典雅对比)    10: {"65 µm""#264653""55 µm""#e76f51"},  # 方案10:双色调深青与砖红 (材料科学常用)    11: {"65 µm""#457b9d""55 µm""#e63946"},  # 方案11:经典灰蓝与正红 (亮眼对比)    12: {"65 µm""#2a9d8f""55 µm""#f4a261"},  # 方案12:浅海绿与沙滩橙 (自然学科常用)    13: {"65 µm""#3d5a80""55 µm""#ee6c4d"},  # 方案13:群青蓝与熟卡其 (沉稳中带亮点)    14: {"65 µm""#1d3557""55 µm""#f1faee"},  # 方案14:极深蓝与极浅绿 (高暗度对比)    15: {"65 µm""#58508d""55 µm""#ff6361"},  # 方案15:绛紫色与西瓜红 (多组分对比首选)    16: {"65 µm""#005f73""55 µm""#ca6702"},  # 方案16:深孔雀蓝与复古铜 (Cell级高质感)    17: {"65 µm""#0077b6""55 µm""#00b4d8"},  # 方案17:渐变海洋蓝 (适合递进式分组)    18: {"65 µm""#606c38""55 µm""#dda15e"},  # 方案18:橄榄绿与麦穗黄 (生态与植物学常用)    19: {"65 µm""#4c5c68""55 µm""#1985a1"},  # 方案19:工业高级灰与科技蓝 (半导体与器件)    20: {"65 µm""#14213d""55 µm""#fca311"}  # 方案20:午夜黑蓝与工业黄 (极致对比度)}

完整代码(模拟数据)

import osimport numpy as npimport pandas as pdimport matplotlib.pyplot as pltfrom matplotlib.gridspec import GridSpecfrom scipy.stats import gaussian_kde# ==============================================================================# 1. 20种符合主流期刊标准的专业科研配色方案# ==============================================================================PALETTES = {    1: {"65 µm""#00bcd4""55 µm""#ffab60"},  # 方案1:青蓝与暖橙 (高对比度,Nature/Science常用)}# 依照要求选择方案 1colors = PALETTES[4]# ==============================================================================# 2. 自动读取同目录下的 data.xlsx# ==============================================================================excel_path = 'data.xlsx'if not os.path.exists(excel_path):    raise FileNotFoundError(f"未在当前目录下找到 '{excel_path}' 文件,请确保该 Excel 文件已存在。")print(f"正在从 {excel_path} 读取数据...")try:    df_read = pd.read_excel(excel_path, sheet_name='AllDataLong')except Exception:    print("未找到 'AllDataLong' 工作表,尝试读取默认第一张工作表...")    df_read = pd.read_excel(excel_path)# ==============================================================================# 3. 自动创建 图表 文件夹# ==============================================================================chart_dir = '图表'if not os.path.exists(chart_dir):    os.makedirs(chart_dir)    print(f"已创建 '{chart_dir}' 文件夹。")# ==============================================================================# 4. 基于 Excel 数据生成学术图表# ==============================================================================print("正在基于 Excel 数据生成高还原度学术图表...")plt.rcParams['font.family'] = 'sans-serif'plt.rcParams['font.sans-serif'] = ['Arial''Liberation Sans''DejaVu Sans']plt.rcParams['axes.unicode_minus'] = Falsefig = plt.figure(figsize=(154.5), dpi=300)gs = GridSpec(14, figure=fig, wspace=0.35)metrics_config = {    'Jsc': {'ylabel'r'$J_{sc}$ ($\mathrm{A\ cm^{-2}}$)''yticks': np.arange(37.238.20.1), 'fmt''%.1f'},    'Voc': {'ylabel'r'$V_{oc}$ (V)''yticks': [0.7470.7500.7530.756], 'fmt''%.3f'},    'FF': {'ylabel''FF (%)''yticks': np.arange(79861), 'fmt''%d'},    'PCE': {'ylabel''PCE (%)''yticks': np.arange(22.524.50.5), 'fmt''%.1f'}}conditions = ['65 µm''55 µm']for i, (metric, config) in enumerate(metrics_config.items()):    ax = fig.add_subplot(gs[i])    df_metric = df_read[df_read['Metric'] == metric]    for idx, cond in enumerate(conditions):        cond_data = df_metric[df_metric['Condition'] == cond]['Value'].dropna().values        if len(cond_data) == 0:            continue        x_base = idx + 1        # A. 绘制自定义箱线图        box_x = x_base - 0.2        q1, q3 = np.percentile(cond_data, [2575])        med = np.median(cond_data)        mean_val = np.mean(cond_data)        low_whisker = np.min(cond_data[cond_data >= q1 - 1.5 * (q3 - q1)])        high_whisker = np.max(cond_data[cond_data <= q3 + 1.5 * (q3 - q1)])        box_width = 0.25        ax.plot([box_x - box_width / 2, box_x + box_width / 2, box_x + box_width / 2, box_x - box_width / 2,                 box_x - box_width / 2],                [q1, q1, q3, q3, q1], color='black', linewidth=1)        ax.plot([box_x - box_width / 2, box_x + box_width / 2], [med, med], color='black', linewidth=1)        ax.plot([box_x, box_x], [q3, high_whisker], color='black', linewidth=1)        ax.plot([box_x, box_x], [q1, low_whisker], color='black', linewidth=1)        ax.plot([box_x - box_width / 4, box_x + box_width / 4], [high_whisker, high_whisker], color='black',                linewidth=1)        ax.plot([box_x - box_width / 4, box_x + box_width / 4], [low_whisker, low_whisker], color='black', linewidth=1)        ax.plot(box_x, mean_val, marker='o', markerfacecolor='white', markeredgecolor='black', markersize=7, zorder=5)        # B. 绘制数据散点         scatter_x_center = x_base + 0.05        np.random.seed(42)        jitter = np.random.uniform(-0.040.04, size=len(cond_data))        ax.scatter(scatter_x_center + jitter, cond_data,                   color=colors[cond], s=35, edgecolor='none', alpha=0.9, zorder=4)        # C. 绘制半边分布曲线 (KDE)        curve_x_start = x_base + 0.18        if len(cond_data) > 1:            kde = gaussian_kde(cond_data)            y_span = np.max(cond_data) - np.min(cond_data)            y_grid = np.linspace(np.min(cond_data) - y_span * 0.1, np.max(cond_data) + y_span * 0.1200)            kde_vals = kde(y_grid)            kde_vals_scaled = (kde_vals / np.max(kde_vals)) * 0.18            ax.plot(curve_x_start + kde_vals_scaled, y_grid, color='black', linewidth=1, zorder=3)    # D. 坐标轴与边框精细化配置    ax.set_ylabel(config['ylabel'], fontsize=12, labelpad=8)    ax.set_yticks(config['yticks'])    ax.set_yticklabels([config['fmt'] % y for y in config['yticks']], fontsize=10)    ax.set_xticks([12])    ax.set_xticklabels(conditions, fontsize=11)    ax.set_xlim(0.52.6)    ax.spines['top'].set_visible(False)    ax.spines['right'].set_visible(False)    ax.spines['left'].set_linewidth(1.2)    ax.spines['bottom'].set_linewidth(1.2)    ax.tick_params(direction='out', length=5, width=1.2, labelsize=11)    if i == 0:        ax.text(-0.321.05'c', transform=ax.transAxes, fontsize=16, fontweight='bold', va='top')# ==============================================================================# 5. 保存图像# ==============================================================================output_path = os.path.join(chart_dir, 'figure_c.png')fig.subplots_adjust(left=0.08, right=0.98, top=0.92, bottom=0.12)plt.savefig(output_path, bbox_inches='tight')plt.close()print(f"绘图成功,图片已保存至: {output_path}")

数据获取

评论+私信获取

最新文章

随机文章

基本 文件 流程 错误 SQL 调试
  1. 请求信息 : 2026-07-03 12:01:45 HTTP/2.0 GET : https://f.mffb.com.cn/a/498856.html
  2. 运行时间 : 0.225653s [ 吞吐率:4.43req/s ] 内存消耗:4,616.10kb 文件加载:140
  3. 缓存信息 : 0 reads,0 writes
  4. 会话信息 : SESSION_ID=1361f51820f676ae05317c42338b2255
  1. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/public/index.php ( 0.79 KB )
  2. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/autoload.php ( 0.17 KB )
  3. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/autoload_real.php ( 2.49 KB )
  4. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/platform_check.php ( 0.90 KB )
  5. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/ClassLoader.php ( 14.03 KB )
  6. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/composer/autoload_static.php ( 4.90 KB )
  7. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper.php ( 8.34 KB )
  8. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-validate/src/helper.php ( 2.19 KB )
  9. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/helper.php ( 1.47 KB )
  10. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/stubs/load_stubs.php ( 0.16 KB )
  11. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Exception.php ( 1.69 KB )
  12. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-container/src/Facade.php ( 2.71 KB )
  13. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/deprecation-contracts/function.php ( 0.99 KB )
  14. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap.php ( 8.26 KB )
  15. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/polyfill-mbstring/bootstrap80.php ( 9.78 KB )
  16. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/var-dumper/Resources/functions/dump.php ( 1.49 KB )
  17. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-dumper/src/helper.php ( 0.18 KB )
  18. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/symfony/var-dumper/VarDumper.php ( 4.30 KB )
  19. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/App.php ( 15.30 KB )
  20. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-container/src/Container.php ( 15.76 KB )
  21. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/container/src/ContainerInterface.php ( 1.02 KB )
  22. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/provider.php ( 0.19 KB )
  23. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Http.php ( 6.04 KB )
  24. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper/Str.php ( 7.29 KB )
  25. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Env.php ( 4.68 KB )
  26. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/common.php ( 0.03 KB )
  27. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/helper.php ( 18.78 KB )
  28. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Config.php ( 5.54 KB )
  29. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/app.php ( 0.95 KB )
  30. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/cache.php ( 0.78 KB )
  31. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/console.php ( 0.23 KB )
  32. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/cookie.php ( 0.56 KB )
  33. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/database.php ( 2.48 KB )
  34. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/Env.php ( 1.67 KB )
  35. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/filesystem.php ( 0.61 KB )
  36. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/lang.php ( 0.91 KB )
  37. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/log.php ( 1.35 KB )
  38. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/middleware.php ( 0.19 KB )
  39. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/route.php ( 1.89 KB )
  40. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/session.php ( 0.57 KB )
  41. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/trace.php ( 0.34 KB )
  42. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/config/view.php ( 0.82 KB )
  43. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/event.php ( 0.25 KB )
  44. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Event.php ( 7.67 KB )
  45. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/service.php ( 0.13 KB )
  46. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/AppService.php ( 0.26 KB )
  47. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Service.php ( 1.64 KB )
  48. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Lang.php ( 7.35 KB )
  49. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/lang/zh-cn.php ( 13.70 KB )
  50. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/Error.php ( 3.31 KB )
  51. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/RegisterService.php ( 1.33 KB )
  52. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/services.php ( 0.14 KB )
  53. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/PaginatorService.php ( 1.52 KB )
  54. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/ValidateService.php ( 0.99 KB )
  55. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/service/ModelService.php ( 2.04 KB )
  56. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/Service.php ( 0.77 KB )
  57. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Middleware.php ( 6.72 KB )
  58. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/initializer/BootService.php ( 0.77 KB )
  59. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/Paginator.php ( 11.86 KB )
  60. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-validate/src/Validate.php ( 63.20 KB )
  61. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/Model.php ( 23.55 KB )
  62. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Attribute.php ( 21.05 KB )
  63. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/AutoWriteData.php ( 4.21 KB )
  64. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/Conversion.php ( 6.44 KB )
  65. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/DbConnect.php ( 5.16 KB )
  66. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/ModelEvent.php ( 2.33 KB )
  67. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/concern/RelationShip.php ( 28.29 KB )
  68. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/contract/Arrayable.php ( 0.09 KB )
  69. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/contract/Jsonable.php ( 0.13 KB )
  70. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/model/contract/Modelable.php ( 0.09 KB )
  71. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Db.php ( 2.88 KB )
  72. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/DbManager.php ( 8.52 KB )
  73. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Log.php ( 6.28 KB )
  74. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Manager.php ( 3.92 KB )
  75. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/log/src/LoggerTrait.php ( 2.69 KB )
  76. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/log/src/LoggerInterface.php ( 2.71 KB )
  77. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Cache.php ( 4.92 KB )
  78. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/psr/simple-cache/src/CacheInterface.php ( 4.71 KB )
  79. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/helper/Arr.php ( 16.63 KB )
  80. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/cache/driver/File.php ( 7.84 KB )
  81. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/cache/Driver.php ( 9.03 KB )
  82. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/CacheHandlerInterface.php ( 1.99 KB )
  83. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/Request.php ( 0.09 KB )
  84. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Request.php ( 55.78 KB )
  85. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/middleware.php ( 0.25 KB )
  86. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Pipeline.php ( 2.61 KB )
  87. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/TraceDebug.php ( 3.40 KB )
  88. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/middleware/SessionInit.php ( 1.94 KB )
  89. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Session.php ( 1.80 KB )
  90. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/session/driver/File.php ( 6.27 KB )
  91. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/SessionHandlerInterface.php ( 0.87 KB )
  92. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/session/Store.php ( 7.12 KB )
  93. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Route.php ( 23.73 KB )
  94. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleName.php ( 5.75 KB )
  95. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Domain.php ( 2.53 KB )
  96. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleGroup.php ( 22.43 KB )
  97. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Rule.php ( 26.95 KB )
  98. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/RuleItem.php ( 9.78 KB )
  99. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/route/app.php ( 1.72 KB )
  100. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/Route.php ( 4.70 KB )
  101. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/dispatch/Controller.php ( 4.74 KB )
  102. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/route/Dispatch.php ( 10.44 KB )
  103. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/controller/Index.php ( 4.81 KB )
  104. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/app/BaseController.php ( 2.05 KB )
  105. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/facade/Db.php ( 0.93 KB )
  106. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/connector/Mysql.php ( 5.44 KB )
  107. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/PDOConnection.php ( 52.47 KB )
  108. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Connection.php ( 8.39 KB )
  109. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/ConnectionInterface.php ( 4.57 KB )
  110. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/builder/Mysql.php ( 16.58 KB )
  111. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Builder.php ( 24.06 KB )
  112. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/BaseBuilder.php ( 27.50 KB )
  113. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/Query.php ( 15.71 KB )
  114. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/BaseQuery.php ( 45.13 KB )
  115. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TimeFieldQuery.php ( 7.43 KB )
  116. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/AggregateQuery.php ( 3.26 KB )
  117. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ModelRelationQuery.php ( 20.07 KB )
  118. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ParamsBind.php ( 3.66 KB )
  119. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/ResultOperation.php ( 7.01 KB )
  120. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/WhereQuery.php ( 19.37 KB )
  121. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/JoinAndViewQuery.php ( 7.11 KB )
  122. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/TableFieldInfo.php ( 2.63 KB )
  123. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-orm/src/db/concern/Transaction.php ( 2.77 KB )
  124. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/log/driver/File.php ( 5.96 KB )
  125. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/LogHandlerInterface.php ( 0.86 KB )
  126. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/log/Channel.php ( 3.89 KB )
  127. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/event/LogRecord.php ( 1.02 KB )
  128. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-helper/src/Collection.php ( 16.47 KB )
  129. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/facade/View.php ( 1.70 KB )
  130. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/View.php ( 4.39 KB )
  131. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Response.php ( 8.81 KB )
  132. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/response/View.php ( 3.29 KB )
  133. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/Cookie.php ( 6.06 KB )
  134. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-view/src/Think.php ( 8.38 KB )
  135. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/framework/src/think/contract/TemplateHandlerInterface.php ( 1.60 KB )
  136. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/Template.php ( 46.61 KB )
  137. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/template/driver/File.php ( 2.41 KB )
  138. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-template/src/template/contract/DriverInterface.php ( 0.86 KB )
  139. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/runtime/temp/067d451b9a0c665040f3f1bdd3293d68.php ( 11.98 KB )
  140. /yingpanguazai/ssd/ssd1/www/f.mffb.com.cn/vendor/topthink/think-trace/src/Html.php ( 4.42 KB )
  1. CONNECT:[ UseTime:0.000741s ] mysql:host=127.0.0.1;port=3306;dbname=f_mffb;charset=utf8mb4
  2. SHOW FULL COLUMNS FROM `fenlei` [ RunTime:0.000821s ]
  3. SELECT * FROM `fenlei` WHERE `fid` = 0 [ RunTime:0.000370s ]
  4. SELECT * FROM `fenlei` WHERE `fid` = 63 [ RunTime:0.000282s ]
  5. SHOW FULL COLUMNS FROM `set` [ RunTime:0.000677s ]
  6. SELECT * FROM `set` [ RunTime:0.000279s ]
  7. SHOW FULL COLUMNS FROM `article` [ RunTime:0.000767s ]
  8. SELECT * FROM `article` WHERE `id` = 498856 LIMIT 1 [ RunTime:0.000545s ]
  9. UPDATE `article` SET `lasttime` = 1783051305 WHERE `id` = 498856 [ RunTime:0.003490s ]
  10. SELECT * FROM `fenlei` WHERE `id` = 66 LIMIT 1 [ RunTime:0.001390s ]
  11. SELECT * FROM `article` WHERE `id` < 498856 ORDER BY `id` DESC LIMIT 1 [ RunTime:0.003804s ]
  12. SELECT * FROM `article` WHERE `id` > 498856 ORDER BY `id` ASC LIMIT 1 [ RunTime:0.003461s ]
  13. SELECT * FROM `article` WHERE `id` < 498856 ORDER BY `id` DESC LIMIT 10 [ RunTime:0.041885s ]
  14. SELECT * FROM `article` WHERE `id` < 498856 ORDER BY `id` DESC LIMIT 10,10 [ RunTime:0.007828s ]
  15. SELECT * FROM `article` WHERE `id` < 498856 ORDER BY `id` DESC LIMIT 20,10 [ RunTime:0.087464s ]
0.227211s