我使用下面的代码使用plotly包创建一行两列子图。但是两个x轴重叠(请参见所附的屏幕截图)。第一个图的轴覆盖了两个图。如何解决这个问题?我从密谋网站上看不到一个很好的例子。还有如何删除图例?
'Dim objRecordset As ADODB.Recordset
'Set objRecordset = New ADODB.Recordset
'Dim i As Integer
'Dim value As Variant
'objRecordset.ActiveConnection = CurrentProject.Connection
'objRecordset.Open "FAC_List"
'While objRecordset.EOF = False
'check for match
' If objRecordset.Fields.Item(0).value = txtLDcode Then
' txtLDcode = True
' Else
'txtLDcode = False
' End If
' objRecordset.MoveNext
'Wend
答案 0 :(得分:0)
创建子图但避免x轴重叠的另一种方法是将子图更改为2行1列。
fig = plotly.tools.make_subplots(rows=2, cols=1, subplot_titles=('Variance', 'Cumulative Variance')
# ,shared_xaxes=True, shared_yaxes=True)