Posts by Lucas Marcondes Pavelski • 149 points
4 posts
-
0
votes1
answer176
viewsA: Route problem when loading Bundle.js
The problem was in configuring the webpack that was missing the property output.publicPath: const path = require('path') const HtmlWebpackPlugin = require('html-webpack-plugin') const webpack =…
-
-1
votes1
answer176
viewsQ: Route problem when loading Bundle.js
I have a route that has the bar character "/" in the middle, as shown below: <Route path="/answers/:question_id" component={QuestionAnswers} /> The link works normal. <Link…
-
3
votes1
answer200
viewsA: Use of Knn function in R
It depends on which package you are using Knn, but usually to evaluate the model you use the function predict(modelo, novo_dado). Follow an example using the package caret who already chooses the…
-
2
votes2
answers359
viewsA: Relate structs in C
There are some possibilities for relational C structures. For a more "strong" reference, create a fixed size vector of animals in the player structure: typedef struct animal { int codigo; char nome;…
canswered Lucas Marcondes Pavelski 149