I have the following result table.
When I try to plot the data, it seems that the "X" axis values are converted to "e scale". Is there a fix to this.
I use following code to create the plot.
fig = plt.figure()#figsize=(11,8)
ax1 = fig.add_subplot(111)
ax1.plot(bulk_ingest_data['initial_records'][0:5], bulk_ingest_data['hf_gen(s)'][0:5], color='r', marker='o', label='LAS data in text form') #500
ax1.plot(bulk_ingest_data['initial_records'][5:10], bulk_ingest_data['hf_gen(s)'][5:10], color='b', marker='o', label='Binary encoded LAS points') #200
#ax1.plot(data['clients'][13:17], data['total'][13:17], color='r', marker='o', label='2636407 points') #50
#ax1.legend(bbox_to_anchor=(1.05, 1), loc=2, borderaxespad=0)
# loc=1,bbox_to_anchor=(0.6,0.5)
fig.suptitle('')#, fontsize=20
plt.xlabel('Number of records ingested)')# fontsize=18
plt.ylabel('HFile generation time(s)')# fontsize=16
#HFile generation time for LAS data in text format and LAS data in sequence format
handles, labels = ax1.get_legend_handles_labels()
lgd = ax1.legend(handles, labels, loc='upper left', bbox_to_anchor=(1.15,1))
ax1.grid('on'
)