분류 전체보기621 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. [Java] 자바 문자열에서 숫자 추출하기 String str = "01-abc123-한글1234"; String restr = str.replaceAll("[^0-9]",""); System.out.println(str + " ==> " + restr); 2021. 10. 27. postgresql 사용자 계정에 권한 부여하기 user 계정 생성 비밀번호는 '따옴표' 를 적어주어야 한다. CREATE USER username WITH PASSWORD 'password'; 루트계정을 만들고자하면 뒤에 SUPERUSER만 붙여주면 된다. CREATE USER username WITH PASSWORD 'password' SUPERUSER; 접근 연결 GRANT CONNECT ON DATABASE database_name TO username; 스키마 권한 부여 GRANT USAGE ON SCHEMA schema_name TO username; 테이블 읽기 권한 부여 GRANT SELECT ON table_name TO username; 수정 및 삭제 권한 부여 GRANT UPDATE, DELETE ON table_name TO us.. 2021. 10. 27. 이전 1 ··· 53 54 55 56 57 58 59 ··· 104 다음