presentation2D

goedemorgen ik ben julien Costermans en dit is mijn presentatie voor motion lab 2d

ik zal jullie meenemen door mijn process voor de explainer

we beginnen bij de keuzes voor de drie sporten

als eerst heb ik research gedaan rond fietsporten er was veel keuze maar er was er maar een die echt uitsprong voor me dit was namelijk bike jousting

vervolgens ben ik overgegaan naar andere sporten waarbij een aantal van mijn keuzes eenzelfde thema hadden



dus heb ik gekozen voor archery tag en schaken
laten we

...

See on Wikiteka »

Econ 5 Final Cheat Sheet

Importing a CSV file

  • df <- read.csv("filename.csv")

Importing a Stata .dta file

  • Requires haven package:

    library(haven)  
    df <- read_dta("stata_file.dta")
    

Setting and checking the working directory

  • Set: setwd("your/path/here")

  • Get: getwd()

Access a column

  • df$column_name

Get mean of a column

  • mean(df$column)

Create a frequency table

  • table(df$column)

Subset rows by condition

  • df[df$state != "OR", ]

  • subset(df, state != "OR")

Subset for specific values (e.g., CA or

...

See on Student Notes »

psycholoy

Biases in Thinking – Confirmation bias means ignoring evidence that opposes our beliefs (e.g., on vaccines); failing to accurately judge source credibility (e.g., celebrity endorsements); misunderstanding or not using statistics (e.g., gambler’s fallacy).*****Scientific Foundations of Psychology (antiquity–18th century) – Psychology originated in philosophy; roots of epistemology (how do we gain knowledge?); Plato: founder of Rationalism (rational analysis to understand the world rather

...

See on Student Notes »

Labora

Pruebas dermatológicas.

FUNCIONES DE LA PIEL
Protección - desgaste, microor, deshidra.

Prod vitamina D. Reser energética: hipodermis.

Unión mucocutánea // Composición del pelo/piel: 28% proteínas, 2% lípidos, 70% minerales/aminoácidos.

DERMOGRAMA
Técnica no invasiva. // Evalúa piel, cuero cabelludo y folículos pilosos con imagen aumentada.

TRICOGRAMA
Examen directo del pelo, su morfología y fase de crecimiento.

¿Cuándo se realiza?
Alopecia, sospecha autoinducida. / Sospecha de dermatofitos

...

See on Wikiteka »

Hhhhhhh

Water cycle 
 the most of Earth's water is in the oceans. The sun drives the water cycle by heating water, causing it to evaporate into the air. Ice and snow can also sublimate directly into water vapor. As air rises, it cools and condenses into clouds. Air currents move these clouds globally. Within clouds, tiny water particles collide, grow, and eventually fall as precipitation (rain, snow, etc.). Snow can accumulate as ice caps and glaciers, storing water for thousands of years. In warmer climates,...

See on Student Notes »

Vjhgjjj

a) A sequence of actions an agent follows to achieve a goal from the initial state.b) A complete description of the environment at a specific time, representing all true conditions.c) A condition where two actions or states cannot occur simultaneously in a planning graph.d) Stanford Research Institute Problem Solver; a formal language for defining actions and effects.e) Forward search starts from the initial state; backward search starts from the goal state.f) Boil water → Add tea leaves → Add

...

See on Student Notes »

Bkt reel ho

Here's a clear and simple comparison between Trade Discount and Cash Discount:

Basis Trade Discount Cash Discount

Meaning A reduction in price given by the seller to the buyer for bulk purchases or to promote sales. A reduction in the invoice amount given to encourage early payment.

Purpose To boost sales volume or reward large quantity purchases. To encourage prompt or early payment.

Timing Given at the time of purchase. Given at the time of payment.

Shown in Invoice Not shown separately in the

...

See on Student Notes »

Gjjggghj

a) Prolog Program for TSP (4 cities)

% Distances

dist(a,b,10). dist(a,c,15). dist(a,d,20).

dist(b,c,35). dist(b,d,25).

dist(c,d,30).

dist(X,Y,D) :- dist(Y,X,D).

% Path cost

path_cost([_],0).

path_cost([A,B|T],Cost) :- dist(A,B,D), path_cost([B|T],C), Cost is D+C.

% All tours starting at Start

tsp(Start,Path,Cost) :-

    Cities = [a,b,c,d],

    select(Start,Cities,Rest),

    permutation(Rest,Perm),

    append([Start|Perm],[Start],Path),

    path_cost(Path,Cost).

% Find shortest

shortest_

...

See on Wikiteka »

ENLGISH

📘 1. BASICS (Grammar & Writing) – With Examples

# Key Term Quick Meaning Example
1 Subject The doer of the action. She runs fast.
2 Verb An action or state word. She runs.
3 Auxiliary Verbs Helping verbs. She is running.
4 Predicate The verb and all info about the subject. The dog barked loudly.
5 Subject-Verb Agreement Verb must match the subject (singular/plural). He walks, they walk.
6 Simple Sentence One complete idea (IC). I love pizza.
7 Capital Letters Start sentences
...

See on Student Notes »