본문 바로가기

백엔드287

[jquery] select 선택에 따라 두번째 select 변경하기 첫번째 select 선택시 두번째 select 내용 변경하기 첫번째 select 선택에 따라 두번째 select 내용이 변경됨을 확인할 수 있다. 2021. 10. 29.
[python] TypeError: Object of type 'complex' is not JSON serializable pyLDAvis.display() 사용중 LDA 결과 내용을 보여주려했는데 다음과 같은 타입에러가 났다. TypeError: Object of type 'complex' is not JSON serializable 내가사용한 LDA display 코드 import pyLDAvis.gensim topicData = pyLDAvis.gensim.prepare(ldamodel, docTermMatrix, dictionary) pyLDAvis.display(topicData) prepare 부분 뒤에 mds 를 지정하면 display가 된다. pyLDAvis.gensim.prepare(ldamodel, docTermMatrix, dictionary, mds='mmds') 결과 2021. 10. 29.
No module named 'pyLDAvis.gensim'​ import pyLDAvis.gensim as gensimvis 다음 코드를 실행하면 모듈이름이 없다고 나온다. pyLDAvis gensim 이름이 변경된 것으로 위의 코드 대신에 아래 코드를 사용하면 된다. import pyLDAvis.gensim_models as gensimvis 최근 코드 정보를 보고싶으면 아래 페이지에서 확인할 수 있다. https://github.com/bmabey/pyLDAvis#:%7E:text=pyLDAvis%20is%20designed%20to%20help,an%20interactive%20web%2Dbased%20visualization.&text=Note%3A%20LDA%20stands%20for%20latent%20Dirichlet%20allocation. GitH.. 2021. 10. 29.
[python] /usr/local/lib/python3.8/dist-packages/ipykernel/ipkernel.py:283: DeprecationWarning: `should_run_async` will not call `transform_cell` automatically in the future. Please pass the result to `transformed_cell` argument and any exception that ha.. pip install --upgrade ipykernel 2021. 10. 29.
[python] python db select 문 출력하기 python과 db 를 연결한 내용은 conn 이다. execute 메서드를 호출해 sql명령어를 입력한다. cur = conn.cursor() cur.execute("select * from ptck.news_save ") cr = cur.fetchall() for x in cr: print(x) 함수로 sql 문을 사용하는 방법이다. cur 은 db connect 에 대한 내용이다. 위의 cur = conn.cursor() 로 보면된다. #함수로 필요한 데이터 호출 def readDB(self,schema,table,colum): sql = "select {colum} from {schema}.{table}".format(colum=colum,schema=schema,table=table) try: .. 2021. 10. 28.
[python] python + postgresql 연동하기 python 프로그래밍 언어용 postgresql 어댑터를 설치해준다. pip install psycopg2-binary postgres와 연결하기 위해서는 psycopg2 패키지의 connect이용하면된다. import psycopg2 conn = psycopg2.connect( host = "localhost", port = 5432, dbname = "test", user="root", password="1234") 2021. 10. 28.