[Çözüldü]-SQLSTATE[42S02]: Base table or view not found: 1146 Table ‘laravel.tableName’ doesn’t exist Hatası

Laravelde php artisan migrate komutu ile migration işlemi yapılmak istendiğinde şöyle bir hata ile karşılaşılabiliyor. Illuminate\Database\QueryException SQLSTATE[42S02]: Base table or view not found: 1146 Table ‘laravel.tableName’ doesn’t exist (SQL: select * from tableName where id = 1 limit 1) at C:\Users\dell\PhpstormProjects\codemvia_web\vendor\laravel\framework\src\Illuminate\Database\Connection.php:671 667▕ // If an exception occurs when attempting to run a query, we’ll format […]

[Çözüldü] – ValueError: Expected 2D array, got scalar array instead:

Python ile Spyder içinde kod yazarken bazen şu hata alınabilir. “if it contains a single sample.”.format(array)) ValueError: Expected 2D array, got scalar array instead: array=7.800000190734863. Reshape your data either using array.reshape(-1, 1) if your data has a single feature or array.reshape(1, -1) if it contains a single sample Şu şekilde olan predict kodumuzu y_head=lr.predict(x) şu […]