我还在学习(vb .net),所以我试着创建一个退出程序的按钮,一旦我编写代码,
Me.close();
我收到错误说:
当前上下文中不存在名称“我”
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void BtnESC_Click(object sender, EventArgs e)
{
Me.Close();
}
}
答案 0 :(得分:5)
您正在编写C#,而不是VB。
VB.NET使用this
作为对当前实例的引用。
C#使用document=pandas.read_csv("C:/Users/User/Documents/train_u6lujuX_CVtuZ9i.csv")
document.isnull().any()
document = document.fillna(lambda x: x.median())
for col in ['LoanAmount', 'ApplicantIncome', 'CoapplicantIncome']:
document[col]=document[col].astype(float)
document['LoanAmount_log'] = np.log(document['LoanAmount'])
document['TotalIncome'] = document['ApplicantIncome'] + document['CoapplicantIncome']
document['TotalIncome_log'] = np.log(document['TotalIncome'])