Ego

Multi tool use
Nota: Para outros significados, veja Ego (desambiguação).
Ego (em alemão ich, "eu") designa na teoria psicanalítica uma das três estruturas do modelo triádico do aparelho psíquico. O ego desenvolve-se a partir do Id com o objetivo de permitir que seus impulsos sejam eficientes, ou seja, levando em conta o mundo externo: é o chamado princípio da realidade. É esse princípio que introduz a razão, o planejamento e a espera no comportamento humano. A satisfação das pulsões é retardada até o momento em que a realidade permita satisfazê-las com um máximo de prazer e um mínimo de consequências negativas.
A principal função do Ego é buscar uma harmonização inicialmente entre os desejos do Id e a realidade do Superego. Há muitos conflitos entre o Id e o Ego, pois os impulsos não civilizados do Id estão sempre querendo expressar-se. Freud destacava que os impulsos do Id são muitas vezes reprimidos pelo Ego por causa do medo de castigo. Ou seja, o Ego pode coibir os impulsos inaceitáveis do Id, o "desejo de roubar", por exemplo, seria um impulso do id (que é totalmente inconsciente). Porém, visto que o indivíduo não pode sobreviver obedecendo somente aos impulsos do Id, é necessário que ele reaja realisticamente a seu ambiente de convívio. O conjunto de procedimentos que leva o indivíduo a comportar-se assim, é o Ego. O Ego é, portanto, mais realístico do que o Id, visando sempre as consequências dos impulsos inconscientes do Id.[1][2].
O Ego não é completamente consciente, os mecanismos de defesa fazem parte de um nível inconsciente.
Referências
↑ Pervin, Lawrence A.; Cervone, Daniel & John, Oliver (2005). Persönlichkeitstheorien. ünchen: Reinhardt. ISBN 3-497-01792-2
↑ Carver, Charles S. & Scheier, Michael F. (2000). Perspectives on personality. Boston: Allyn and Bacon. ISBN 0 2055 2262 9
Ver também |
 |
Este artigo sobre psicologia é um esboço. Você pode ajudar a Wikipédia expandindo-o. |
c7F4grQWOj0Rq9172,oK ILi8yDC,JQe,VFpnxvmC qYMDr4aam9a92roM1,cnK9NtXD R4 7T,lEpe,8L9 mMNdRzOmFJXN8Ml9OI
Popular posts from this blog
0
I found a lot of questions abount appendices and ToC. Many users want appendices to be grouped in an Appendix part, however some problems arise with ToC, hyperref, PDF viewer bookmarks, and so on. There are different solutions which require extra packages, command patching and other extra code, however none of them satisfies me. I almost found an easy way to accomplish a good result, where appendices are added to bookmarks in the right way and hyperref links point to the right page. However, the number of the "Appendix" part page is wrong (it's the number of appendix A). Is there any EASY way to fix that? This is a MWE: documentclass{book} usepackage[nottoc,notlot,notlof]{tocbibind} usepackage{hyperref} begin{document} frontmatter tableofcontents mainmatter part{First} chapter{...
1
In the sklearn.model_selection.cross_val_predict page it is stated: Generate cross-validated estimates for each input data point. It is not appropriate to pass these predictions into an evaluation metric. Can someone explain what does it mean? If this gives estimate of Y (y prediction) for every Y (true Y), why can't I calculate metrics such as RMSE or coefficient of determination using these results?
python scikit-learn cross-validation
share | improve this question
edited Nov 28 '18 at 17:52
desertnaut
20.3k 7 43 79
...
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
0
I have written a function using curl to generate the token. I check whether the token exists; if not, then I execute the function, otherwise I skip this function and proceed to next. But I am not sure that it will work if a token is expired. Is there any command to identify the expired token and generates the new one by calling this function? #!/bin/ksh export V_TOKEN="gen_token_${V_DATE}.txt" #### Calling function to generate the token function callPOST { curl -X POST -H 'Content-Type: application/x-www-form-url' -d 'grant_type=password&username=usr01&password=pwd...