r中的情节线条有时不画画

时间:2018-05-12 06:50:19

标签: r plot lines

我有以下代码来证明有时在绘图中的r中的线不会绘制。我找不到模式,或者防止这个问题,我甚至可以在我的第5和第6行尝试中看到反转坐标,在情节范围内尝试等等,对于我的生活无法理解这一点

任何建议都将受到赞赏。

Option Explicit

Public Sub Login1()
    Dim IE As Object, html As Object
    Const EMAIL = "joe.bloggs@internet.com"
    Const PASSWORD = "not_today"
    Set IE = CreateObject("internetexplorer.application")

    With IE

        .Visible = True
        .navigate "https://partner.spreadshirt.com/login"

        While .Busy = True Or .readyState < 4: DoEvents: Wend

        Set html = .document

        html.querySelector("#loginUsername").innertext = EMAIL
        html.querySelector("#loginPassword").innertext = PASSWORD

        Dim b As Object
        Set b = html.querySelector("#login-button")
        b.disabled = False
        b.Click

       ' .Quit

    End With

End Sub

1 个答案:

答案 0 :(得分:2)

我认为您误解了x的{​​{1}}和y输入。

lines

lines(c(0.0, 0.0), c(3.0, 3.0)) (0, 3)绘制一条单线点。

我想你的意思是

(0, 3)

在点lines(c(0, 3), c(0, 3)) (0, 0)之间绘制一条直线。

例如:

(3, 3)

enter image description here